From 59e5f60e34acde3f049b639dae0dc52d126daccf Mon Sep 17 00:00:00 2001 From: Greg Taylor Date: Thu, 15 Jan 2009 03:25:27 +0000 Subject: [PATCH] Whoops, forgot to protect against no arguments. Silly me. --- src/commands/comsys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/comsys.py b/src/commands/comsys.py index 36a5a1f8b9..6835dbce46 100644 --- a/src/commands/comsys.py +++ b/src/commands/comsys.py @@ -192,7 +192,7 @@ def cmd_cemit(command): session = command.session pobject = session.get_pobject() - if command.command_argument == 0: + if not command.command_argument: session.msg("Channel emit what?") return