Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2005-12-30 15:00:09 +0300
committerYann Leboulanger <asterix@lagaule.org>2005-12-30 15:00:09 +0300
commit56ebaa475c4fb4f7bb5a6186a84195320f3e90df (patch)
treea99d1a37aa7f4710d4afe0ab8da5ba3c79f172d0
parent61c27375faba3a3a800d0a9a35ae3c15222f9500 (diff)
typo
-rw-r--r--src/tabbed_chat_window.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tabbed_chat_window.py b/src/tabbed_chat_window.py
index 08b824a5b..d9d3741a8 100644
--- a/src/tabbed_chat_window.py
+++ b/src/tabbed_chat_window.py
@@ -340,14 +340,14 @@ class TabbedChatWindow(chat.Chat):
prio = 0
contact_list = gajim.contacts.get_contact(self.account, jid)
if contact_list:
- contacts_list = [self.contacts[jid]]
+ contact_list = [self.contacts[jid]]
- contact = contacts_list[0]
+ contact = contact_list[0]
show = contact.show
jid = contact.jid
keyID = contact.keyID
- for u in contacts_list:
+ for u in contact_list:
if u.priority > prio:
prio = u.priority
show = u.show