We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 614acd0 commit e160750Copy full SHA for e160750
python/plugins/processing/gui/AlgorithmDialogBase.py
@@ -114,7 +114,7 @@ def requestFinished(self):
114
if reply.error() != QNetworkReply.NoError:
115
html = self.tr('<h2>No help available for this algorithm</h2><p>{}</p>'.format(reply.errorString()))
116
else:
117
- html = unicode(reply.readAll())
+ html = str(reply.readAll()).decode('utf-8')
118
reply.deleteLater()
119
self.txtHelp.setHtml(html)
120
0 commit comments