Skip to content

Commit

Permalink
[processing] fix wrong variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Sep 25, 2017
1 parent 75afe3f commit b2b494d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/Clip.py
Expand Up @@ -96,7 +96,7 @@ def processAlgorithm(self, progress):
continue

if single_clip_feature:
total = 100.0 / len(features) if len(features) > 0 else 1
total = 100.0 / len(input_features) if len(input_features) > 0 else 1
else:
total = 0

Expand Down

0 comments on commit b2b494d

Please sign in to comment.