diff --git a/evennia/commands/default/help.py b/evennia/commands/default/help.py index f8d212f0e5..f03773eb89 100644 --- a/evennia/commands/default/help.py +++ b/evennia/commands/default/help.py @@ -267,7 +267,8 @@ class CmdHelp(Command): return # no exact matches found. Just give suggestions. - self.msg((self.format_help_entry("", "No help entry found for '%s'" % query, None, suggested=suggestions), {"type": "help"})) + self.msg(self.format_help_entry("", f"No help entry found for '{query}'", + None, suggested=suggestions), options={"type": "help"}) def _loadhelp(caller):