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
path: root/src
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2006-12-18 01:37:21 +0300
committerYann Leboulanger <asterix@lagaule.org>2006-12-18 01:37:21 +0300
commit724f70232008b7c8d2e424f3bfd9118bda324cbf (patch)
treec8e2a67a5925eea204153604c0e0fe3421965f61 /src
parent46cad5fecddfe32d8d35bc402031d56f5f97ac0b (diff)
fix typo.
Diffstat (limited to 'src')
-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 a411aa1e3..9548827f2 100644
--- a/src/remote_control.py
+++ b/src/remote_control.py
@@ -66,7 +66,7 @@ def get_dbus_struct(obj):
if isinstance(obj, bool):
return DBUS_BOOLEAN(obj)
if isinstance(obj, (list, tuple)):
- result = dbus.Array([get_dbus_struct(i)) for i in obj],
+ result = dbus.Array([get_dbus_struct(i) for i in obj],
signature='v')
if result == []:
return DBUS_NONE()