From 9c0e0783dbbaa85bcbe94649281f69a26b656a3e Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Fri, 6 Apr 2007 10:27:14 -0400 Subject: [PATCH] Fix execute command when using the new dbus-python --- shell/view/ActivityHost.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/view/ActivityHost.py b/shell/view/ActivityHost.py index 9b742664..c0307a7c 100644 --- a/shell/view/ActivityHost.py +++ b/shell/view/ActivityHost.py @@ -66,7 +66,7 @@ class ActivityHost: return self._model def execute(self, command, args): - return self._activity.execute(command, args) + return self._activity.execute(command, dbus.Array(args)) def share(self): self._activity.share()