fix typo in python/plugins/processing/algs/qgis/Polygonize.py
This commit is contained in:
epifanio 2016-09-02 10:33:45 -04:00 committed by GitHub
parent 31c3739460
commit 4aac75ff9b

View File

@ -55,7 +55,7 @@ class Polygonize(GeoAlgorithm):
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))