summaryrefslogtreecommitdiff
path: root/src/core.py
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-12-31 13:05:06 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-12-31 13:05:06 +0000
commit61245f40eb33545257c34d24701febf35be47690 (patch)
treedbbe2c9731a51a6a09fedc4171dfe0a47adf3c23 /src/core.py
parentc3597c425786d9f45aefe8a026b5a3d6ad25bc37 (diff)
downloadpoezio-61245f40eb33545257c34d24701febf35be47690.tar.gz
poezio-61245f40eb33545257c34d24701febf35be47690.tar.bz2
poezio-61245f40eb33545257c34d24701febf35be47690.tar.xz
poezio-61245f40eb33545257c34d24701febf35be47690.zip
fix InfoTab, fixed #2087
Diffstat (limited to 'src/core.py')
-rw-r--r--src/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py
index c8354e52..c3132665 100644
--- a/src/core.py
+++ b/src/core.py
@@ -91,7 +91,7 @@ class Core(object):
# information window.
self.information_buffer = TextBuffer()
self.information_win_size = config.get('info_win_height', 2, 'var')
- default_tab = tabs.InfoTab(self, "Info") if self.xmpp.anon\
+ default_tab = tabs.InfoTab(self) if self.xmpp.anon\
else tabs.RosterInfoTab(self)
default_tab.on_gain_focus()
self.tabs = [default_tab]