Commit 58600327 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

Use python2.5 to avoid python2.4's tarfile.pys bug.

Sort the order of entries.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@23438 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ed7acc5a
#! /usr/bin/python
#! /usr/bin/python2.5
##############################################################################
#
# Copyright (c) 2002 Nexedi SARL and Contributors. All Rights Reserved.
......@@ -73,7 +73,7 @@ def generateInformation(fd):
os.write(fd, '<?xml version="1.0"?>\n')
os.write(fd, '<repository>\n')
for file in os.listdir(os.getcwd()):
for file in sorted(os.listdir(os.getcwd())):
if file.endswith('.bt5'):
info('Reading %s... ' % (file,))
try:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment