Skip to content

Commit

Permalink
[processing][help] use new anchor style also for modeler
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Feb 25, 2018
1 parent 25c5d8d commit a54192c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -367,7 +367,7 @@ def openHelp(self):
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)

0 comments on commit a54192c

Please sign in to comment.