From 724f70232008b7c8d2e424f3bfd9118bda324cbf Mon Sep 17 00:00:00 2001 From: Yann Leboulanger <asterix@lagaule.org> Date: Sun, 17 Dec 2006 22:37:21 +0000 Subject: [PATCH] fix typo. --- src/remote_control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/remote_control.py b/src/remote_control.py index a411aa1e30..9548827f2b 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() -- GitLab