Skip to content

Commit 022c7de

Browse files
committedOct 13, 2016
[processing] correctly handle help loading (fix #15641)
(cherry picked from commit 1132624)
1 parent 5adb90d commit 022c7de

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
@@ -113,7 +113,7 @@ def requestFinished(self):
113113
if reply.error() != QNetworkReply.NoError:
114114
html = self.tr('<h2>No help available for this algorithm</h2><p>{}</p>'.format(reply.errorString()))
115115
else:
116-
html = unicode(reply.readAll())
116+
html = str(reply.readAll()).decode('utf-8')
117117
reply.deleteLater()
118118
self.txtHelp.setHtml(html)
119119

0 commit comments

Comments
 (0)
Please sign in to comment.