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 5adb90d commit 022c7deCopy full SHA for 022c7de
python/plugins/processing/gui/AlgorithmDialogBase.py
@@ -113,7 +113,7 @@ def requestFinished(self):
113
if reply.error() != QNetworkReply.NoError:
114
html = self.tr('<h2>No help available for this algorithm</h2><p>{}</p>'.format(reply.errorString()))
115
else:
116
- html = unicode(reply.readAll())
+ html = str(reply.readAll()).decode('utf-8')
117
reply.deleteLater()
118
self.txtHelp.setHtml(html)
119
0 commit comments