Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix typo in simply_geometry function
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@10833 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
cfarmer committed May 21, 2009
1 parent 46b7361 commit 755ea3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/fTools/tools/doGeometry.py
Expand Up @@ -574,7 +574,7 @@ def extractAsSimple( self, geom, tolerance ):
if geom.isMultipart():
multi_geom = geom.asMultiPolyline()
for i in multi_geom:
simple = self.simlifyLine( i, 1, tolerance )
simple = self.simplifyLine( i, 1, tolerance )
if simple is None:
return None
else:
Expand Down

0 comments on commit 755ea3e

Please sign in to comment.