summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2015-05-10 19:28:17 +0200
committerFlorent Le Coz <louiz@louiz.org>2015-05-10 19:28:17 +0200
commit861f5c4bbd775b091362766ecafeb7d1955aab2f (patch)
tree1ae7566392c92ca2ce5af9706124b26c19a53ce5 /src
parent8aecdc7db758e31307c948f5cf7e55348e299ba9 (diff)
downloadpoezio-861f5c4bbd775b091362766ecafeb7d1955aab2f.tar.gz
poezio-861f5c4bbd775b091362766ecafeb7d1955aab2f.tar.bz2
poezio-861f5c4bbd775b091362766ecafeb7d1955aab2f.tar.xz
poezio-861f5c4bbd775b091362766ecafeb7d1955aab2f.zip
The previous commit, but correctly done this time
Diffstat (limited to 'src')
-rw-r--r--src/tabs/listtab.py2
-rw-r--r--src/tabs/muclisttab.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tabs/listtab.py b/src/tabs/listtab.py
index 12e2a686..c5aab5eb 100644
--- a/src/tabs/listtab.py
+++ b/src/tabs/listtab.py
@@ -197,6 +197,6 @@ class ListTab(Tab):
self.core.doupdate()
def matching_names(self):
- return [(2, self.name.full)]
+ return [(2, self.name)]
diff --git a/src/tabs/muclisttab.py b/src/tabs/muclisttab.py
index 55d5c2bd..53586fcd 100644
--- a/src/tabs/muclisttab.py
+++ b/src/tabs/muclisttab.py
@@ -22,7 +22,7 @@ class MucListTab(ListTab):
plugin_keys = {}
def __init__(self, server):
- ListTab.__init__(self, server,
+ ListTab.__init__(self, server.full,
"ā€œjā€: join room.",
_('Chatroom list on server %s (Loading)') % server,
(('node-part', 0), ('name', 2), ('users', 3)))