Skip to content

Commit

Permalink
Merge pull request qgis#59928 from agiudiceandrea/patch-42
Browse files Browse the repository at this point in the history
[Modeler] Fix algorithms help URL (Followup qgis#59922)
  • Loading branch information
alexbruy authored Dec 17, 2024
2 parents 98e89dc + d7e819d commit d1232eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def openHelp(self):
"processing_algs/{}/{}.html#{}".format(
self.widget.algorithm().provider().helpId(),
self.algorithm().groupId(),
f"{self.algorithm().provider().helpId()}{self.algorithm().name()}",
f"{self.algorithm().provider().helpId()}{self.algorithm().name().replace('_', '-')}",
)
).toString()

Expand Down

0 comments on commit d1232eb

Please sign in to comment.