Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFran Rogers <fran@dumetella.net>2010-11-21 15:55:45 (GMT)
committer Fran Rogers <fran@dumetella.net>2010-11-21 15:55:45 (GMT)
commit07498ef768282c9c98197f993baec246f6d90451 (patch)
treefd6fdf574bdd0d9b6dbe46f6b3e1519a170314ad
parent755896c11d315fdb8afbf2b5d67952f0d5ae1023 (diff)
Fix imports
-rw-r--r--ircactivity.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ircactivity.py b/ircactivity.py
index ed5f245..bd96b12 100644
--- a/ircactivity.py
+++ b/ircactivity.py
@@ -87,11 +87,11 @@ class IRCActivity(activity.Activity):
self.client.core.window.network.requested_joins = set()
for winid in data['scrollback'].keys():
if winid in data['channels']:
- win = purk.windows.new(windows.ChannelWindow,
+ win = purk.windows.new(purk.windows.ChannelWindow,
self.client.core.window.network,
winid, self.client.core)
else:
- win = purk.windows.new(windows.QueryWindow,
+ win = purk.windows.new(purk.windows.QueryWindow,
self.client.core.window.network,
winid, self.client.core)
win.output.get_buffer().set_text(data['scrollback'][winid])