Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Ball <cjb@laptop.org>2008-09-25 21:11:02 (GMT)
committer Chris Ball <cjb@laptop.org>2008-09-25 21:11:02 (GMT)
commit0ca9b29328e5dfe10f97d854cd6384edcc8e8ef5 (patch)
tree341b7679045f963184e4fb250e56b952b7bdf2ed
parentd8d4e84553d8099b0d7a1061a5aa7e457362cca1 (diff)
Trac #8665: Bundle-building was broken by a Sugar API change.
Switch to using dist_xo.
-rw-r--r--pippy_app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pippy_app.py b/pippy_app.py
index 99ee682..ce33a51 100644
--- a/pippy_app.py
+++ b/pippy_app.py
@@ -748,7 +748,7 @@ def main():
olddir = os.getcwd()
oldargv = sys.argv
os.chdir(app_temp)
- sys.argv = [ 'setup.py', 'dist' ]
+ sys.argv = [ 'setup.py', 'dist_xo' ]
bundlebuilder.start(pytitle)
sys.argv = oldargv
os.chdir(olddir)