We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6f2ba0f + 035229f commit 3c2a92bCopy full SHA for 3c2a92b
python/plugins/processing/algs/qgis/VectorSplit.py
@@ -70,7 +70,7 @@ def processAlgorithm(self, progress):
70
features = vector.features(layer)
71
72
for count, i in enumerate(uniqueValues):
73
- fName = '{0}_{1}.shp'.format(baseName, unicode(i).strip())
+ fName = u'{0}_{1}.shp'.format(baseName, unicode(i).strip())
74
75
writer = vector.VectorWriter(fName, None, fields, geomType, crs)
76
for f in features:
0 commit comments