Skip to content

Commit a54192c

Browse files
committed
[processing][help] use new anchor style also for modeler
1 parent 25c5d8d commit a54192c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/modeler/ModelerParametersDialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ def openHelp(self):
367367
algHelp = self._alg.helpUrl()
368368
if not algHelp:
369369
algHelp = QgsHelp.helpUrl("processing_algs/{}/{}.html#{}".format(
370-
self._alg.provider().helpId(), self._alg.groupId(), self._alg.name())).toString()
370+
self._alg.provider().helpId(), self._alg.groupId(), "{}{}".format(self._alg.provider().helpId(), self._alg.name()))).toString()
371371

372372
if algHelp not in [None, ""]:
373373
webbrowser.open(algHelp)

0 commit comments

Comments
 (0)