diff options
| author | jason | 2012-07-21 23:21:12 -0600 |
|---|---|---|
| committer | jason | 2012-07-21 23:21:12 -0600 |
| commit | 6a9a90b6cbe3396462a4dc3996d890a5c41bf7b8 (patch) | |
| tree | 1defed9bb2b666e95d10dab4a6c61e1f89435f85 | |
| parent | 54b3d6b94a807a9c1bce0b81d991e75ba630a071 (diff) | |
| download | warmachine-6a9a90b6cbe3396462a4dc3996d890a5c41bf7b8.tar.gz warmachine-6a9a90b6cbe3396462a4dc3996d890a5c41bf7b8.zip | |
removed debugging statements.
| -rw-r--r-- | wmd/actions/modules.py | 1 |
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): | |||
| 29 | class LoadModule(Action): | 29 | class 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(): |