summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjason2012-07-21 23:21:12 -0600
committerjason2012-07-21 23:21:12 -0600
commit6a9a90b6cbe3396462a4dc3996d890a5c41bf7b8 (patch)
tree1defed9bb2b666e95d10dab4a6c61e1f89435f85
parent54b3d6b94a807a9c1bce0b81d991e75ba630a071 (diff)
downloadwarmachine-6a9a90b6cbe3396462a4dc3996d890a5c41bf7b8.tar.gz
warmachine-6a9a90b6cbe3396462a4dc3996d890a5c41bf7b8.zip
removed debugging statements.
-rw-r--r--wmd/actions/modules.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/wmd/actions/modules.py b/wmd/actions/modules.py
index e08d24c..0998c8d 100644
--- a/wmd/actions/modules.py
+++ b/wmd/actions/modules.py
@@ -29,7 +29,6 @@ class ReloadModule(Action):
29class LoadModule(Action): 29class LoadModule(Action):
30 def recv_msg(self, irc, obj_data): 30 def recv_msg(self, irc, obj_data):
31 username = obj_data.get_username() 31 username = obj_data.get_username()
32 print obj_data.__dict__
33 if username in settings.ADMINS: 32 if username in settings.ADMINS:
34 args = obj_data.params.split(" ") 33 args = obj_data.params.split(" ")
35 if "PRIVMSG" in obj_data.command and ":LOADMODULE" in args[1].upper(): 34 if "PRIVMSG" in obj_data.command and ":LOADMODULE" in args[1].upper():