equal
deleted
inserted
replaced
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 |