Skip to content

Commit 4aac75f

Browse files
authored
fix typo
fix typo in python/plugins/processing/algs/qgis/Polygonize.py
1 parent 31c3739 commit 4aac75f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/algs/qgis/Polygonize.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def defineCharacteristics(self):
5555
self.tr('Keep table structure of line layer'), False))
5656
self.addParameter(ParameterBoolean(self.GEOMETRY,
5757
self.tr('Create geometry columns'), True))
58-
self.addOutput(OutputVector(self.OUTPUT, self.tr('Polygons from lines'), datatype=[dataojects.TYPE_VECTOR_POLYGON]))
58+
self.addOutput(OutputVector(self.OUTPUT, self.tr('Polygons from lines'), datatype=[dataobjects.TYPE_VECTOR_POLYGON]))
5959

6060
def processAlgorithm(self, progress):
6161
vlayer = dataobjects.getObjectFromUri(self.getParameterValue(self.INPUT))

0 commit comments

Comments
 (0)