largefiles: make prompt order deterministic
42ae1b1f048f introduced iteration of a set. Make it stable.
--- a/hgext/largefiles/overrides.py Sun Jan 17 17:23:32 2016 +0100
+++ b/hgext/largefiles/overrides.py Sun Jan 17 19:29:27 2016 +0100
@@ -470,7 +470,7 @@
elif lfutil.standin(f) in p1:
lfiles.add(f)
- for lfile in lfiles:
+ for lfile in sorted(lfiles):
standin = lfutil.standin(lfile)
(lm, largs, lmsg) = actions.get(lfile, (None, None, None))
(sm, sargs, smsg) = actions.get(standin, (None, None, None))