Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] Fix vector split alg
  • Loading branch information
nyalldawson committed May 2, 2017
1 parent ee1236f commit 43a8680
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/VectorSplit.py
Expand Up @@ -86,7 +86,7 @@ def processAlgorithm(self, context, feedback):
for current, i in enumerate(uniqueValues):
fName = u'{0}_{1}.shp'.format(baseName, str(i).strip())

writer, dest, layer = vector.createVectorWriter(fName, None, fields, geomType, crs, context)
writer, dest, _layer = vector.createVectorWriter(fName, None, fields, geomType, crs, context)
for f in QgsProcessingUtils.getFeatures(layer, context):
if f[fieldName] == i:
writer.addFeature(f)
Expand Down

0 comments on commit 43a8680

Please sign in to comment.