diff --git a/src/commands/cmdhandler.py b/src/commands/cmdhandler.py index a0c873948..8d2b0e0d5 100644 --- a/src/commands/cmdhandler.py +++ b/src/commands/cmdhandler.py @@ -195,7 +195,7 @@ def cmdhandler(caller, raw_string, testing=False): sysarg = "Command '%s' is not available." % raw_string suggestions = string_suggestions(raw_string, cmdset.get_all_cmd_keys_and_aliases(caller), cutoff=0.7, maxnum=3) if suggestions: - sysarg += " Did you maybe mean %s?" % utils.list_to_string(suggestions, 'or', addquote=True) + sysarg += " Maybe you meant %s?" % utils.list_to_string(suggestions, 'or', addquote=True) else: sysarg += " Type \"help\" for help." raise ExecSystemCommand(syscmd, sysarg)