Skip to content

Commit b74cb5f

Browse files
committed
fTools: fix error basic statistics
1 parent 7af82ca commit b74cb5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/plugins/fTools/tools/doVisual.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ def update( self ):
9191
else:
9292
self.useSelected.setCheckState( Qt.Unchecked )
9393
# add all fields in combobox because now we can work with text fields too
94-
for i in changedField:
95-
self.cmbField.addItem( unicode( changedField[i].name() ) )
94+
for f in changedField:
95+
self.cmbField.addItem( unicode( f.name() ) )
9696

9797
def accept( self ):
9898
if self.inShape.currentText() == "":

0 commit comments

Comments
 (0)