typo
This commit is contained in:
parent
61c27375fa
commit
56ebaa475c
|
@ -340,14 +340,14 @@ class TabbedChatWindow(chat.Chat):
|
||||||
prio = 0
|
prio = 0
|
||||||
contact_list = gajim.contacts.get_contact(self.account, jid)
|
contact_list = gajim.contacts.get_contact(self.account, jid)
|
||||||
if contact_list:
|
if contact_list:
|
||||||
contacts_list = [self.contacts[jid]]
|
contact_list = [self.contacts[jid]]
|
||||||
|
|
||||||
contact = contacts_list[0]
|
contact = contact_list[0]
|
||||||
show = contact.show
|
show = contact.show
|
||||||
jid = contact.jid
|
jid = contact.jid
|
||||||
keyID = contact.keyID
|
keyID = contact.keyID
|
||||||
|
|
||||||
for u in contacts_list:
|
for u in contact_list:
|
||||||
if u.priority > prio:
|
if u.priority > prio:
|
||||||
prio = u.priority
|
prio = u.priority
|
||||||
show = u.show
|
show = u.show
|
||||||
|
|
Loading…
Reference in New Issue