From c688865e10540386361bde350f4580190828f835 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 22 Apr 2012 22:58:23 +0200 Subject: [PATCH] Slightly changed text on not-found command. --- src/commands/cmdhandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)