Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar
diff options
context:
space:
mode:
authorOwen Williams <owen@ywwg.localdomain>2007-03-06 13:01:46 (GMT)
committer Owen Williams <owen@ywwg.localdomain>2007-03-06 13:01:46 (GMT)
commit2c7a22b15790c914b660408feb5d5fce096ac598 (patch)
tree6ca6902c555ced5a632a39c4bc0bec05cc689e5e /sugar
parent195e18d7b007966dc0bf30c0e6eee26149190bab (diff)
Fix bug for activities with spaces in the name
Diffstat (limited to 'sugar')
-rw-r--r--sugar/activity/bundle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sugar/activity/bundle.py b/sugar/activity/bundle.py
index 6a6ebdd..283204f 100644
--- a/sugar/activity/bundle.py
+++ b/sugar/activity/bundle.py
@@ -43,7 +43,7 @@ class Bundle:
if cp.has_option(section, 'class'):
self._class = cp.get(section, 'class')
- self._exec = '%s %s --bundle-path=%s' % (
+ self._exec = '%s %s --bundle-path="%s"' % (
os.path.join(env.get_shell_bin_dir(), _PYTHON_FACTORY),
self._class, self.get_path())
elif cp.has_option(section, 'exec'):