Skip to content

Commit 3249015

Browse files
committed
Fix copy/paste error
1 parent ebe0ebd commit 3249015

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/algs/qgis/AutoincrementalField.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def processAlgorithm(self, parameters, context, feedback):
7575
fields, source.wkbType(), source.sourceCrs())
7676

7777
features = source.getFeatures()
78-
total = total = 100.0 / source.featureCount() if source.featureCount() else 0
78+
total = 100.0 / source.featureCount() if source.featureCount() else 0
7979
for current, input_feature in enumerate(features):
8080
if feedback.isCanceled():
8181
break

0 commit comments

Comments
 (0)