Skip to content

Commit 755ea3e

Browse files
author
cfarmer
committedMay 21, 2009
fix typo in simply_geometry function
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@10833 c8812cc2-4d05-0410-92ff-de0c093fc19c

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
@@ -574,7 +574,7 @@ def extractAsSimple( self, geom, tolerance ):
574574
if geom.isMultipart():
575575
multi_geom = geom.asMultiPolyline()
576576
for i in multi_geom:
577-
simple = self.simlifyLine( i, 1, tolerance )
577+
simple = self.simplifyLine( i, 1, tolerance )
578578
if simple is None:
579579
return None
580580
else:

0 commit comments

Comments
 (0)
Please sign in to comment.