Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2007-04-06 14:27:14 (GMT)
committer Dan Williams <dcbw@redhat.com>2007-04-06 14:27:14 (GMT)
commit9c0e0783dbbaa85bcbe94649281f69a26b656a3e (patch)
treeb5854d8177f487cf3fb91006c052a6dc0ff45de9 /shell
parent66d0a402e1b347a8cd0a9bedf717cd97b5d173b1 (diff)
Fix execute command when using the new dbus-python
Diffstat (limited to 'shell')
-rw-r--r--shell/view/ActivityHost.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/view/ActivityHost.py b/shell/view/ActivityHost.py
index 9b74266..c0307a7 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()