From 406e24dcff56a4e4c59a110333d2bc1c7b9d3288 Mon Sep 17 00:00:00 2001 From: mathieui Date: Wed, 18 Apr 2012 00:07:22 +0200 Subject: Remove if len(list) in command_help --- src/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core.py') diff --git a/src/core.py b/src/core.py index f8450ef2..2d7e5129 100644 --- a/src/core.py +++ b/src/core.py @@ -1375,14 +1375,14 @@ class Core(object): /help """ args = arg.split() - if len(args) == 0: + if not args: msg = _('Available commands are: ') for command in self.commands: msg += "%s " % command for command in self.current_tab().commands: msg += "%s " % command msg += _("\nType /help to know what each command does") - if len(args) >= 1: + if args: if args[0] in self.commands: msg = self.commands[args[0]][1] elif args[0] in self.current_tab().commands: -- cgit v1.2.3