Skip to content

Commit 2a33908

Browse files
author
Giovanni Manghi
committed
fix enconding in processing when input layer names have non ascii chars
1 parent a2d430e commit 2a33908

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/gui/ParametersPanel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def getExtendedLayerName(self, layer):
195195
authid = layer.crs().authid()
196196
if ProcessingConfig.getSetting(ProcessingConfig.SHOW_CRS_DEF) \
197197
and authid is not None:
198-
return '{} [{}]'.format(layer.name(), authid)
198+
return u'{} [{}]'.format(layer.name(), authid)
199199
else:
200200
return layer.name()
201201

0 commit comments

Comments
 (0)