Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-04-15 10:26:50 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-04-15 10:26:50 (GMT)
commitd49b0ed6fb6f083d62d205c651aced3c0cf50095 (patch)
tree99a8984824c9078982ac0aa5a51abacc94ab8ef5 /sugar
parentf78b23cf82215a7fa3085bd961f2dda59318e861 (diff)
Use sys.path.append, not insert
Diffstat (limited to 'sugar')
-rw-r--r--sugar/activity/activityfactoryservice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sugar/activity/activityfactoryservice.py b/sugar/activity/activityfactoryservice.py
index 5dcedb3..ee98f51 100644
--- a/sugar/activity/activityfactoryservice.py
+++ b/sugar/activity/activityfactoryservice.py
@@ -140,7 +140,7 @@ def run_with_args(args):
run(options.bundle_path)
def run(bundle_path):
- sys.path.insert(0, bundle_path)
+ sys.path.append(bundle_path)
bundle = Bundle(bundle_path)