Use sys.path.append, not insert

This commit is contained in:
Marco Pesenti Gritti
2007-04-15 12:26:50 +02:00
parent f78b23cf82
commit d49b0ed6fb
6 changed files with 6 additions and 5 deletions
+1 -1
View File
@@ -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)