Skip to content

Commit 1dfec33

Browse files
Giovanni Manghislarosa
Giovanni Manghi
authored andcommittedJul 31, 2015
fix Processing QGIS vector grid as lines
1 parent 15170dd commit 1dfec33

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)
Please sign in to comment.