Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #3447 from epifanio/patch-1
fix typo
  • Loading branch information
m-kuhn committed Sep 2, 2016
2 parents 31c3739 + 4aac75f commit 01da222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/Polygonize.py
Expand Up @@ -55,7 +55,7 @@ def defineCharacteristics(self):
self.tr('Keep table structure of line layer'), False))
self.addParameter(ParameterBoolean(self.GEOMETRY,
self.tr('Create geometry columns'), True))
self.addOutput(OutputVector(self.OUTPUT, self.tr('Polygons from lines'), datatype=[dataojects.TYPE_VECTOR_POLYGON]))
self.addOutput(OutputVector(self.OUTPUT, self.tr('Polygons from lines'), datatype=[dataobjects.TYPE_VECTOR_POLYGON]))

def processAlgorithm(self, progress):
vlayer = dataobjects.getObjectFromUri(self.getParameterValue(self.INPUT))
Expand Down

0 comments on commit 01da222

Please sign in to comment.