Skip to content

Commit

Permalink
fix #8198
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Jun 29, 2013
1 parent 4a37805 commit b697371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/fTools/tools/doGeometry.py
Expand Up @@ -1008,7 +1008,7 @@ def perimMeasure( self, inGeom, measure ):
def doubleFieldIndex( self, name, desc, fieldList ):
i = 0
for f in fieldList:
if name == f.name().toUpper():
if name == f.name().upper():
return (i, fieldList )
i += 1

Expand Down

0 comments on commit b697371

Please sign in to comment.