Skip to content

Commit

Permalink
[processing] correctly handle help loading (fix #15641)
Browse files Browse the repository at this point in the history
(cherry picked from commit 1132624)
  • Loading branch information
alexbruy committed Oct 13, 2016
1 parent 614acd0 commit e160750
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/AlgorithmDialogBase.py
Expand Up @@ -114,7 +114,7 @@ def requestFinished(self):
if reply.error() != QNetworkReply.NoError:
html = self.tr('<h2>No help available for this algorithm</h2><p>{}</p>'.format(reply.errorString()))
else:
html = unicode(reply.readAll())
html = str(reply.readAll()).decode('utf-8')
reply.deleteLater()
self.txtHelp.setHtml(html)

Expand Down

0 comments on commit e160750

Please sign in to comment.