Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBao Vuong <bvuong@Jarvis.(none)>2010-06-16 16:23:10 (GMT)
committer Bao Vuong <bvuong@Jarvis.(none)>2010-06-16 16:23:10 (GMT)
commit2f1ef288da855e1ba75182ec0202b7f74c08a73b (patch)
tree6fecd473ee1ee14743d14feddb106e4076731060
parent8b8960c6d4a15af382fc3a0fabfdd318710d29c5 (diff)
debugging
-rw-r--r--ircactivity.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/ircactivity.py b/ircactivity.py
index 18ea413..90c8510 100644
--- a/ircactivity.py
+++ b/ircactivity.py
@@ -30,9 +30,20 @@ class IRCActivity(activity.Activity):
def write_file(self, file_path):
print "DEBUG: executing write_file"
+
+ print "=== nickname ==="
self.metadata['nickname'] = self.client.core.window.network.me
+ print "=== ======== ==="
+
+ print "=== channels ==="
self.metadata['channels'] = self.client.core.channels
+ print "=== ======== ==="
+
+ print "=== server ==="
self.metadata['server'] = self.client.core.window.network.server
+ print "=== ====== ==="
+
+ print "DEBUG: done with write_file"
def __init__(self, handle):