##// END OF EJS Templates
largefiles: rename local variable appropriately...
FUJIWARA Katsunori -
r31657:641f3a60 default
parent child Browse files
Show More
@@ -165,13 +165,13 b' def openlfdirstate(ui, repo, create=True'
165 165 return lfdirstate
166 166
167 167 def lfdirstatestatus(lfdirstate, repo):
168 wctx = repo['.']
168 pctx = repo['.']
169 169 match = matchmod.always(repo.root, repo.getcwd())
170 170 unsure, s = lfdirstate.status(match, [], False, False, False)
171 171 modified, clean = s.modified, s.clean
172 172 for lfile in unsure:
173 173 try:
174 fctx = wctx[standin(lfile)]
174 fctx = pctx[standin(lfile)]
175 175 except LookupError:
176 176 fctx = None
177 177 if not fctx or fctx.data().strip() != hashfile(repo.wjoin(lfile)):
General Comments 0
You need to be logged in to leave comments. Login now