Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix enconding in Split Vector layer tool when splitting attribute has…
… non ascii chars
  • Loading branch information
Giovanni Manghi committed Feb 3, 2015
1 parent 6f2ba0f commit 035229f
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 @@ -70,7 +70,7 @@ def processAlgorithm(self, progress):
features = vector.features(layer)

for count, i in enumerate(uniqueValues):
fName = '{0}_{1}.shp'.format(baseName, unicode(i).strip())
fName = u'{0}_{1}.shp'.format(baseName, unicode(i).strip())

writer = vector.VectorWriter(fName, None, fields, geomType, crs)
for f in features:
Expand Down

0 comments on commit 035229f

Please sign in to comment.