Skip to content

Commit b697371

Browse files
committedJun 29, 2013
fix #8198
1 parent 4a37805 commit b697371

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/fTools/tools/doGeometry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1008,7 +1008,7 @@ def perimMeasure( self, inGeom, measure ):
10081008
def doubleFieldIndex( self, name, desc, fieldList ):
10091009
i = 0
10101010
for f in fieldList:
1011-
if name == f.name().toUpper():
1011+
if name == f.name().upper():
10121012
return (i, fieldList )
10131013
i += 1
10141014

0 commit comments

Comments
 (0)
Please sign in to comment.