Fix account.msg, which didn't properly handle tuple input

This commit is contained in:
Griatch 2020-03-04 22:28:43 +01:00
parent 0aa38eddab
commit c5ff2de0bd
2 changed files with 12 additions and 3 deletions

View file

@ -79,7 +79,7 @@ class CmdHelp(Command):
evmore.msg(self.caller, text, session=self.session)
return
self.msg((text, {"type": "help"}))
self.msg(text=(text, {"type": "help"}))
@staticmethod
def format_help_entry(title, help_text, aliases=None, suggested=None):