Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/sugar-install-bundle2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/sugar-install-bundle b/tools/sugar-install-bundle
index 0945c29..971d974 100755
--- a/tools/sugar-install-bundle
+++ b/tools/sugar-install-bundle
@@ -14,7 +14,7 @@ def get_bundle_root_dir(file_names):
bundle_root_dir = None
for file_name in file_names:
if not bundle_root_dir:
- bundle_root_dir = file_name.partition('/')[0]
+ bundle_root_dir = file_name.split('/')[0]
if not bundle_root_dir.endswith('.activity'):
raise 'Incorrect bundle.'
else: