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__)