[processing][help] use new anchor style also for modeler

This commit is contained in:
Alexander Bruy 2018-02-25 12:23:57 +02:00
parent 25c5d8dbea
commit a54192cb72

View File

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