hgext/largefiles/overrides.py
changeset 32400 124ee239d9cb
parent 32362 23c9a2a71c6e
child 32421 c87db79b9507
equal deleted inserted replaced
32399:af3ef002395d 32400:124ee239d9cb
   117 
   117 
   118     lfnames = []
   118     lfnames = []
   119     m = matcher
   119     m = matcher
   120 
   120 
   121     wctx = repo[None]
   121     wctx = repo[None]
   122     for f in repo.walk(matchmod.badmatch(m, lambda x, y: None)):
   122     for f in repo[None].walk(matchmod.badmatch(m, lambda x, y: None)):
   123         exact = m.exact(f)
   123         exact = m.exact(f)
   124         lfile = lfutil.standin(f) in wctx
   124         lfile = lfutil.standin(f) in wctx
   125         nfile = f in wctx
   125         nfile = f in wctx
   126         exists = lfile or nfile
   126         exists = lfile or nfile
   127 
   127