diff options
author | Florent Le Coz <louiz@louiz.org> | 2015-05-10 19:28:17 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2015-05-10 19:28:17 +0200 |
commit | 861f5c4bbd775b091362766ecafeb7d1955aab2f (patch) | |
tree | 1ae7566392c92ca2ce5af9706124b26c19a53ce5 /src/tabs | |
parent | 8aecdc7db758e31307c948f5cf7e55348e299ba9 (diff) | |
download | poezio-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/tabs')
-rw-r--r-- | src/tabs/listtab.py | 2 | ||||
-rw-r--r-- | src/tabs/muclisttab.py | 2 |
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))) |