Skip to content

Commit 9a97a87

Browse files
committedApr 7, 2017
Use display name in algorithm help
1 parent fb1cf1e commit 9a97a87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/core/GeoAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def getCopy(self):
8787
# methods to overwrite when creating a custom geoalgorithm
8888

8989
def _formatHelp(self, text):
90-
return "<h2>%s</h2>%s" % (self.name(), "".join(["<p>%s</p>" % s for s in text.split("\n")]))
90+
return "<h2>%s</h2>%s" % (self.displayName(), "".join(["<p>%s</p>" % s for s in text.split("\n")]))
9191

9292
def help(self):
9393
return False, None

0 commit comments

Comments
 (0)
Please sign in to comment.