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>2013-01-02 16:54:02 +0400
committerYann Leboulanger <asterix@lagaule.org>2013-01-02 16:54:02 +0400
commit912f0e921d52f2296932c6779ad35f3bd0d144d0 (patch)
treeb8a353f1fedf20f737ba19152618de3eef7f675f /src/remote_control.py
parentd27591076fa0ec8ab046aa805581e88e5c612585 (diff)
fix imports and many py3 changements
Diffstat (limited to 'src/remote_control.py')
-rw-r--r--src/remote_control.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote_control.py b/src/remote_control.py
index b2a193d32..60f22b7b1 100644
--- a/src/remote_control.py
+++ b/src/remote_control.py
@@ -619,7 +619,7 @@ class SignalObject(dbus.service.Object):
raise dbus_support.MissingArgument()
jid = self._get_real_jid(jid)
- cached_vcard = gajim.connections.values()[0].get_cached_vcard(jid)
+ cached_vcard = list(gajim.connections.values())[0].get_cached_vcard(jid)
if cached_vcard:
return get_dbus_struct(cached_vcard)