From 6f274225b6c0cdd99fea752688615a574bd2ddd0 Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Sun, 31 Oct 2010 19:02:57 +0000 Subject: link mauve: Fixed a crash on /help help help --- src/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/gui.py b/src/gui.py index f1d5eb0c..21517da0 100644 --- a/src/gui.py +++ b/src/gui.py @@ -847,7 +847,7 @@ class Gui(object): for command in list(self.commands.keys()): msg += "%s " % command msg += _("\nType /help to know what each command does") - if len(args) == 1: + if len(args) >= 1: if args[0] in list(self.commands.keys()): msg = self.commands[args[0]][1] else: -- cgit v1.2.3