[processing] Fix algorithm help link in modeler

Fixes #18147
This commit is contained in:
Nyall Dawson 2018-02-20 08:41:37 +10:00
parent fdebddd13a
commit 206f22b9c7

View File

@ -366,7 +366,7 @@ class ModelerParametersDialog(QDialog):
def openHelp(self):
algHelp = self._alg.helpUrl()
if not algHelp:
algHelp = QgsHelp.helpUrl("processing_algs/{}/{}.html{}".format(
algHelp = QgsHelp.helpUrl("processing_algs/{}/{}.html#{}".format(
self._alg.provider().helpId(), self._alg.groupId(), self._alg.name())).toString()
if algHelp not in [None, ""]: