From 83af5aa6c0cf8a9191544e92ecc3faa7aa0200a0 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sat, 2 Oct 2004 00:49:08 +0000 Subject: [PATCH] Oops, left a print in. --- src/commands.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/commands.py b/src/commands.py index af80d1f07..c64305a38 100644 --- a/src/commands.py +++ b/src/commands.py @@ -524,7 +524,6 @@ def wrap(f, *argsArgs, **argsKwargs): if 'getopts' in argsKwargs: f(self, irc, msg, args, state.getopts, *state.args, **state.kwargs) else: - print state.args, state.kwargs f(self, irc, msg, args, *state.args, **state.kwargs) newf = utils.changeFunctionName(newf, f.func_name, f.__doc__)