Skip to content

Commit

Permalink
[processing] Fix broken output of multipoint since WKB type merge
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Aug 10, 2016
1 parent bd8db5d commit 9e66e15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/tools/vector.py
Expand Up @@ -653,7 +653,7 @@ def _runSQL(sql):
extension = 'shp'
self.destination = self.destination + '.shp'

if geometryType == QgsWkbTypes.NullGeometry:
if geometryType == QgsWkbTypes.NoGeometry:
if extension == 'shp':
extension = 'dbf'
self.destination = self.destination[:self.destination.rfind('.')] + '.dbf'
Expand Down

0 comments on commit 9e66e15

Please sign in to comment.