another attempt to fix hudson (bug 651800)

This commit is contained in:
Andy McKay 2011-04-25 12:30:46 -07:00
Родитель 80fccf5325
Коммит 7319960bdc
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -143,7 +143,7 @@ class FileViewer:
# Not using os.path.walk so we get just the right order.
def iterate(node):
for filename in os.listdir(node):
for filename in sorted(os.listdir(node)):
full = os.path.join(node, filename)
all_files.append(full)
if os.path.isdir(full):