From 14a12b7bf32d0efdee9efef9faa2f12e6a588d9e Mon Sep 17 00:00:00 2001 From: InspectorCaracal <51038201+InspectorCaracal@users.noreply.github.com> Date: Fri, 14 Oct 2022 11:35:04 -0600 Subject: [PATCH] patch nomatch suggestions --- evennia/commands/cmdhandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/commands/cmdhandler.py b/evennia/commands/cmdhandler.py index ca18957e48..c0002987ac 100644 --- a/evennia/commands/cmdhandler.py +++ b/evennia/commands/cmdhandler.py @@ -748,7 +748,7 @@ def cmdhandler( ) if suggestions: sysarg += _(" Maybe you meant {command}?").format( - command=utils.list_to_string(suggestions, _("or"), addquote=True) + command=utils.list_to_string(suggestions, endsep=_("or"), addquote=True) ) else: sysarg += _(' Type "help" for help.')