From 412ba851542f999b8b39dc0a0859fe75a04b5098 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Mon, 2 Jan 2006 06:46:27 +0000 Subject: [PATCH] fix a TB --- src/systray.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/systray.py b/src/systray.py index c1ace63ef..1a2b33dc8 100644 --- a/src/systray.py +++ b/src/systray.py @@ -249,7 +249,8 @@ class Systray: contacts_menu = gtk.Menu() item.set_submenu(contacts_menu) for jid in gajim.contacts.get_jid_list(account): - contact = gajim.get_contact_with_highest_priority(account, jid) + contact = gajim.contacts.get_contact_with_highest_priority(account, + jid) if group in contact.groups and contact.show != 'offline' and \ contact.show != 'error': at_least_one = True