From 2e7a00cd38a59513ca256e6fca694711a1e53b93 Mon Sep 17 00:00:00 2001 From: Dimitur Kirov Date: Wed, 15 Feb 2006 23:06:33 +0000 Subject: [PATCH] typo, now list_contacts without additional argument [account] returns a valid result --- src/remote_control.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/remote_control.py b/src/remote_control.py index 220036464..b65fe490b 100644 --- a/src/remote_control.py +++ b/src/remote_control.py @@ -348,9 +348,9 @@ class SignalObject(DbusPrototype): accounts_to_search = accounts for account in accounts_to_search: if account in accounts: - for jid in gajim.contacts.get_jid_list(for_account): + for jid in gajim.contacts.get_jid_list(account): item = self._serialized_contacts(gajim.contacts.get_contact( - for_account, jid)) + account, jid)) if item: result.append(item) else: