Merge pull request #3447 from epifanio/patch-1

fix typo
This commit is contained in:
Matthias Kuhn 2016-09-02 17:11:12 +02:00 committed by GitHub
commit 01da222b34

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))