Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix copy/paste error
  • Loading branch information
nyalldawson committed Jun 23, 2017
1 parent ebe0ebd commit 3249015
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -75,7 +75,7 @@ def processAlgorithm(self, parameters, context, feedback):
fields, source.wkbType(), source.sourceCrs())

features = source.getFeatures()
total = total = 100.0 / source.featureCount() if source.featureCount() else 0
total = 100.0 / source.featureCount() if source.featureCount() else 0
for current, input_feature in enumerate(features):
if feedback.isCanceled():
break
Expand Down

0 comments on commit 3249015

Please sign in to comment.