##// END OF EJS Templates
largefiles: make prompt order deterministic...
Mads Kiilerich -
r27904:ee3123e1 default
parent child Browse files
Show More
@@ -470,7 +470,7 b' def overridecalculateupdates(origfn, rep'
470 elif lfutil.standin(f) in p1:
470 elif lfutil.standin(f) in p1:
471 lfiles.add(f)
471 lfiles.add(f)
472
472
473 for lfile in lfiles:
473 for lfile in sorted(lfiles):
474 standin = lfutil.standin(lfile)
474 standin = lfutil.standin(lfile)
475 (lm, largs, lmsg) = actions.get(lfile, (None, None, None))
475 (lm, largs, lmsg) = actions.get(lfile, (None, None, None))
476 (sm, sargs, smsg) = actions.get(standin, (None, None, None))
476 (sm, sargs, smsg) = actions.get(standin, (None, None, None))
General Comments 0
You need to be logged in to leave comments. Login now