Skip to content

Commit 1714e66

Browse files
Giovanni Manghislarosa
authored andcommitted
fix Processing QGIS vector grid as lines
fixes #13115 (cherry-picked from 1dfec33)
1 parent 313a6bc commit 1714e66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def processAlgorithm(self, progress):
9090
fields.append(QgsField('coord', QVariant.Double, '', 24, 15))
9191
fieldCount = 2
9292
writer = self.getOutputFromName(self.OUTPUT).getVectorWriter(
93-
fields, QGis.WKBPolygon, mapCRS)
93+
fields, QGis.WKBLineString, mapCRS)
9494

9595
feat = QgsFeature()
9696
feat.initAttributes(fieldCount)

0 commit comments

Comments
 (0)