From 063ded0f472d3c9f8ef23ac4fbeddcc078db4f95 Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Tue, 13 Mar 2012 10:29:51 +1300 Subject: [PATCH] durp --- core/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/main.py b/core/main.py index 1b872c3..e567a46 100755 --- a/core/main.py +++ b/core/main.py @@ -34,8 +34,8 @@ class Input(dict): def notice(msg): conn.cmd('NOTICE', [nick, msg]) - def cmd(command): - conn.cmd(command) + def raw(command): + conn.send(command) dict.__init__(self, conn=conn, raw=raw, prefix=prefix, command=command, params=params, nick=nick, user=user, host=host,