Fix bug when no help entry was found.

This commit is contained in:
Griatch 2017-02-04 12:07:24 +01:00
parent 6882d2451d
commit be3e3ef109

View file

@ -225,7 +225,7 @@ class CmdHelp(Command):
return
# no exact matches found. Just give suggestions.
self.msg(format_help_entry("", "No help entry found for '%s'" % query, None, suggested=suggestions))
self.msg(self.format_help_entry("", "No help entry found for '%s'" % query, None, suggested=suggestions))
class CmdSetHelp(COMMAND_DEFAULT_CLASS):