Fix execute command when using the new dbus-python

This commit is contained in:
Dan Williams 2007-04-06 10:27:14 -04:00
parent 66d0a402e1
commit 9c0e0783db

View File

@ -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()