Skip to content

Commit

Permalink
Use display name in algorithm help
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Apr 7, 2017
1 parent fb1cf1e commit 9a97a87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/core/GeoAlgorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def getCopy(self):
# methods to overwrite when creating a custom geoalgorithm

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

def help(self):
return False, None
Expand Down

0 comments on commit 9a97a87

Please sign in to comment.