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>2010-03-28 22:30:11 +0400
committerYann Leboulanger <asterix@lagaule.org>2010-03-28 22:30:11 +0400
commita9555590fb310f61752990e217b71759fdc3c5b2 (patch)
tree5257fb55cddefa4d5fc864097ccc2e3944825bc9
parent66b11ebe2a85e5794e3e24fb2eaf7ada59a6ca2f (diff)
fix typo. Fixes #5570
-rw-r--r--src/common/contacts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/contacts.py b/src/common/contacts.py
index ebc45500d..934e57816 100644
--- a/src/common/contacts.py
+++ b/src/common/contacts.py
@@ -594,7 +594,7 @@ class Contacts:
return self._contacts[account].keys()
def get_contacts_jid_list(self, account):
- return [jid for jid, contact in self._contacts[accounts] if not
+ return [jid for jid, contact in self._contacts[account] if not
contact[0].is_groupchat()]
def contact_from_gc_contact(self, gc_contact):