We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c70a0d2 commit 9a341acCopy full SHA for 9a341ac
python/plugins/processing/tools/dataobjects.py
@@ -241,7 +241,7 @@ def exportVectorLayer(layer):
241
if idx != -1:
242
filename = filename[:idx]
243
244
- filename = str(layer.name())
+ filename = unicode(layer.name())
245
validChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789:"
246
filename = ''.join(c for c in filename if c in validChars)
247
if len(filename) == 0:
0 commit comments