Skip to content

Commit e160750

Browse files
committedOct 13, 2016
[processing] correctly handle help loading (fix #15641)
(cherry picked from commit 1132624)
1 parent 614acd0 commit e160750

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def requestFinished(self):
114114
if reply.error() != QNetworkReply.NoError:
115115
html = self.tr('<h2>No help available for this algorithm</h2><p>{}</p>'.format(reply.errorString()))
116116
else:
117-
html = unicode(reply.readAll())
117+
html = str(reply.readAll()).decode('utf-8')
118118
reply.deleteLater()
119119
self.txtHelp.setHtml(html)
120120

0 commit comments

Comments
 (0)
Please sign in to comment.