Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix enconding in processing when input layer names have non ascii chars
  • Loading branch information
Giovanni Manghi committed Feb 3, 2015
1 parent a2d430e commit 2a33908
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 2a33908

Please sign in to comment.