Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-12-18 13:24:28 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-12-18 13:24:28 (GMT)
commit6b09475b998cd15d0bf89831137968d48fc16f4e (patch)
tree34a10eae6fc076d30099638a5f2989c2065a8815 /shell
parentad31376488836550a85e4d695fed9774981b3671 (diff)
Add a start method to the activity. It's parallel/alternative to join.
Diffstat (limited to 'shell')
-rw-r--r--shell/view/Shell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/view/Shell.py b/shell/view/Shell.py
index 0bb59bf..b2a1ab4 100644
--- a/shell/view/Shell.py
+++ b/shell/view/Shell.py
@@ -209,7 +209,7 @@ class Shell(gobject.GObject):
def start_activity(self, activity_type):
logging.debug('Shell.start_activity')
activity = ActivityFactory.create(activity_type)
- activity.execute('test', [])
+ activity.start()
return activity
def set_zoom_level(self, level):