hgext/largefiles/lfutil.py
changeset 22911 509e2cbee679
parent 22095 cb62d77c7a01
child 22912 3b8e6c095239
equal deleted inserted replaced
22910:4f2a5c7cdf78 22911:509e2cbee679
   134             lfdirstate.normallookup(lfile)
   134             lfdirstate.normallookup(lfile)
   135     return lfdirstate
   135     return lfdirstate
   136 
   136 
   137 def lfdirstatestatus(lfdirstate, repo, rev):
   137 def lfdirstatestatus(lfdirstate, repo, rev):
   138     match = match_.always(repo.root, repo.getcwd())
   138     match = match_.always(repo.root, repo.getcwd())
   139     s = lfdirstate.status(match, [], False, False, False)
   139     unsure, s = lfdirstate.status(match, [], False, False, False)
   140     unsure, modified, added, removed, missing, unknown, ignored, clean = s
   140     modified, added, removed, missing, unknown, ignored, clean = s
   141     for lfile in unsure:
   141     for lfile in unsure:
   142         try:
   142         try:
   143             fctx = repo[rev][standin(lfile)]
   143             fctx = repo[rev][standin(lfile)]
   144         except LookupError:
   144         except LookupError:
   145             fctx = None
   145             fctx = None