Skip to content

Commit 90d50ec

Browse files
committedFeb 26, 2018
[processing][help] use new anchor style also for modeler
(cherry picked from commit a54192c)
1 parent fb86a5f commit 90d50ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/modeler/ModelerParametersDialog.py

+1-1
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)
Please sign in to comment.