diff hgext/largefiles/overrides.py @ 18368:de685145f5c2

largefiles: upload files in sorted order
author Mads Kiilerich <mads@kiilerich.com>
date Wed, 12 Dec 2012 02:38:14 +0100
parents 6252b4f1c4b4
children 03442135dff4
line wrap: on
line diff
--- a/hgext/largefiles/overrides.py	Wed Dec 12 02:38:14 2012 +0100
+++ b/hgext/largefiles/overrides.py	Wed Dec 12 02:38:14 2012 +0100
@@ -1028,7 +1028,7 @@
                     files.add(f)
         toupload = toupload.union(
             set([f for f in files if lfutil.isstandin(f) and f in ctx]))
-    return toupload
+    return sorted(toupload)
 
 def overrideoutgoing(orig, ui, repo, dest=None, **opts):
     result = orig(ui, repo, dest, **opts)