Skip to content

Commit 5560f00

Browse files
committedFeb 3, 2015
Merge pull request #1878 from gioman/fix_processing_encoding
fix enconding in processing when input layer names have non ascii chars (fix #12106)
2 parents a2d430e + 2a33908 commit 5560f00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/gui/ParametersPanel.py

Lines changed: 1 addition & 1 deletion
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)
Please sign in to comment.