Print the missing files in order
This commit is contained in:
parent
6e6dd35e46
commit
acbbfa3381
@ -34,7 +34,9 @@ def main(args):
|
|||||||
|
|
||||||
# get files missing in source
|
# get files missing in source
|
||||||
sys.stderr.write("getting files missing in source\n")
|
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
|
targetfile = fpath
|
||||||
try:
|
try:
|
||||||
sourcefile = sourcetree[rpath]
|
sourcefile = sourcetree[rpath]
|
||||||
|
Loading…
Reference in New Issue
Block a user