Print the missing files in order

This commit is contained in:
Martin Gracik 2010-12-02 17:04:13 +01:00
parent 6e6dd35e46
commit acbbfa3381
1 changed files with 3 additions and 1 deletions

View File

@ -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]