Skip to content

Commit 9e66e15

Browse files
committedAug 10, 2016
[processing] Fix broken output of multipoint since WKB type merge
1 parent bd8db5d commit 9e66e15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/tools/vector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ def _runSQL(sql):
653653
extension = 'shp'
654654
self.destination = self.destination + '.shp'
655655

656-
if geometryType == QgsWkbTypes.NullGeometry:
656+
if geometryType == QgsWkbTypes.NoGeometry:
657657
if extension == 'shp':
658658
extension = 'dbf'
659659
self.destination = self.destination[:self.destination.rfind('.')] + '.dbf'

0 commit comments

Comments
 (0)
Please sign in to comment.