Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/purk/events.py
diff options
context:
space:
mode:
Diffstat (limited to 'purk/events.py')
-rw-r--r--purk/events.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/purk/events.py b/purk/events.py
index 4142003..1eec7c3 100644
--- a/purk/events.py
+++ b/purk/events.py
@@ -194,11 +194,16 @@ def run(text, window, network):
event_name = "Command" + c_data.name.capitalize()
if event_name in all_events:
+ print "WOO"
result = trigger(event_name, c_data)
+ print result
if result:
- c_data.window.write("* /%s: %s" % (c_data.name, result[0]))
+ print "woo more?"
+ #c_data.window.write("* /%s: %s" % (c_data.name, result[0]))
+ c_data.window.write("* /%s %s" % (c_data.name, result[0]))
else:
+ print "NO WOO"
trigger("Command", c_data)
if not c_data.done: