Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Williams <dcbw@localhost.localdomain>2006-12-19 21:35:24 (GMT)
committer Dan Williams <dcbw@localhost.localdomain>2006-12-19 21:35:24 (GMT)
commitf63456c0893884ad3a9a998ebbddcb0cd6a04139 (patch)
treeb3de185830df192cc2dcaa297e3672bbfde79994
parentbaab27377f00fba7520a564136d28e1d8c395356 (diff)
Tell activities to start after launching them
-rwxr-xr-xshell/sugar-activity3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/sugar-activity b/shell/sugar-activity
index c4a14cf..bb6cf30 100755
--- a/shell/sugar-activity
+++ b/shell/sugar-activity
@@ -29,4 +29,5 @@ bus_name = f.read()
f.close()
os.environ['DBUS_SESSION_BUS_ADDRESS'] = bus_name
-ActivityFactory.create(sys.argv[1])
+activity = ActivityFactory.create(sys.argv[1])
+activity.start()