From acbbfa3381f794a47ab2b43f52803622f0896e94 Mon Sep 17 00:00:00 2001 From: Martin Gracik Date: Thu, 2 Dec 2010 17:04:13 +0100 Subject: [PATCH] Print the missing files in order --- utils/filediff.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils/filediff.py b/utils/filediff.py index a7ffd0df..a75af9d0 100644 --- a/utils/filediff.py +++ b/utils/filediff.py @@ -34,7 +34,9 @@ def main(args): # get files missing in source sys.stderr.write("getting files missing in source\n") - for rpath, fpath in targettree.items(): + for rpath in sorted(targettree.keys()): + fpath = targettree[rpath] + targetfile = fpath try: sourcefile = sourcetree[rpath]