hgext/largefiles/reposetup.py
changeset 34344 ac0cd81e2f83
parent 31740 a40e979b9d97
child 35084 61888bd0b300
equal deleted inserted replaced
34343:255c761a52db 34344:ac0cd81e2f83
   160 
   160 
   161                     match._files = [f for f in match._files
   161                     match._files = [f for f in match._files
   162                                     if sfindirstate(f)]
   162                                     if sfindirstate(f)]
   163                     # Don't waste time getting the ignored and unknown
   163                     # Don't waste time getting the ignored and unknown
   164                     # files from lfdirstate
   164                     # files from lfdirstate
   165                     unsure, s = lfdirstate.status(match, [], False, listclean,
   165                     unsure, s = lfdirstate.status(match, subrepos=[],
   166                                                   False)
   166                                                   ignored=False,
       
   167                                                   clean=listclean,
       
   168                                                   unknown=False)
   167                     (modified, added, removed, deleted, clean) = (
   169                     (modified, added, removed, deleted, clean) = (
   168                         s.modified, s.added, s.removed, s.deleted, s.clean)
   170                         s.modified, s.added, s.removed, s.deleted, s.clean)
   169                     if parentworking:
   171                     if parentworking:
   170                         for lfile in unsure:
   172                         for lfile in unsure:
   171                             standin = lfutil.standin(lfile)
   173                             standin = lfutil.standin(lfile)