hgext/largefiles/lfutil.py
changeset 22911 509e2cbee679
parent 22095 cb62d77c7a01
child 22912 3b8e6c095239
--- a/hgext/largefiles/lfutil.py	Mon Oct 13 14:18:47 2014 -0700
+++ b/hgext/largefiles/lfutil.py	Fri Oct 03 21:44:10 2014 -0700
@@ -136,8 +136,8 @@
 
 def lfdirstatestatus(lfdirstate, repo, rev):
     match = match_.always(repo.root, repo.getcwd())
-    s = lfdirstate.status(match, [], False, False, False)
-    unsure, modified, added, removed, missing, unknown, ignored, clean = s
+    unsure, s = lfdirstate.status(match, [], False, False, False)
+    modified, added, removed, missing, unknown, ignored, clean = s
     for lfile in unsure:
         try:
             fctx = repo[rev][standin(lfile)]