Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pippy_app.py
diff options
context:
space:
mode:
Diffstat (limited to 'pippy_app.py')
-rw-r--r--pippy_app.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pippy_app.py b/pippy_app.py
index 290af5f..7230b52 100644
--- a/pippy_app.py
+++ b/pippy_app.py
@@ -746,8 +746,8 @@ def main():
copy2(sourcefile, '%s/pippy_app.py' % app_temp)
# write MANIFEST file.
with open('%s/MANIFEST' % app_temp, 'w') as f:
- for dirpath, dirnames, filenames in os.walk(app_temp):
- for name in filenames:
+ for dirpath, dirnames, filenames in sorted(os.walk(app_temp)):
+ for name in sorted(filenames):
fn = os.path.join(dirpath, name).replace(app_temp+'/', '')
if fn=='MANIFEST': continue
f.write('%s\n' % fn)