Skip to content
Permalink
Browse files
fix typo
fix typo in python/plugins/processing/algs/qgis/Polygonize.py
  • Loading branch information
epifanio committed Sep 2, 2016
1 parent 31c3739 commit 4aac75f
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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))

0 comments on commit 4aac75f

Please sign in to comment.