Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #1878 from gioman/fix_processing_encoding
fix enconding in processing when input layer names have non ascii chars (fix #12106)
  • Loading branch information
alexbruy committed Feb 3, 2015
2 parents a2d430e + 2a33908 commit 5560f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/ParametersPanel.py
Expand Up @@ -195,7 +195,7 @@ def getExtendedLayerName(self, layer):
authid = layer.crs().authid()
if ProcessingConfig.getSetting(ProcessingConfig.SHOW_CRS_DEF) \
and authid is not None:
return '{} [{}]'.format(layer.name(), authid)
return u'{} [{}]'.format(layer.name(), authid)
else:
return layer.name()

Expand Down

0 comments on commit 5560f00

Please sign in to comment.