Skip to content

Commit

Permalink
[processing] convert messages to unicode (fix #14286)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Feb 18, 2016
1 parent bcded3c commit 61a92e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/core/Processing.py
Expand Up @@ -333,7 +333,7 @@ def runAlgorithm(algOrName, onFinish, *args, **kwargs):

msg = alg._checkParameterValuesBeforeExecuting()
if msg:
print 'Unable to execute algorithm\n' + msg
print 'Unable to execute algorithm\n' + unicode(msg)
QgsMessageLog.logMessage(Processing.tr('Unable to execute algorithm\n{0}').format(msg), Processing.tr("Processing"))
return

Expand Down

0 comments on commit 61a92e2

Please sign in to comment.