Skip to content

Commit 90b313c

Browse files
committed
[processing] fix typo in Add autoincremental layer alg (fix #14892)
1 parent f56c568 commit 90b313c

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
@@ -62,7 +62,7 @@ def processAlgorithm(self, progress):
6262
geom = feat.geometry()
6363
outFeat.setGeometry(geom)
6464
attrs = feat.attributes()
65-
attrs.append(count)
65+
attrs.append(current)
6666
outFeat.setAttributes(attrs)
6767
writer.addFeature(outFeat)
6868
del writer

0 commit comments

Comments
 (0)