hgext/largefiles/reposetup.py
changeset 41759 aaad36b88298
parent 41676 0531dff73d0b
child 42926 34ed651ba7e4
equal deleted inserted replaced
41758:15d3facfa40a 41759:aaad36b88298
   172                         for lfile in unsure:
   172                         for lfile in unsure:
   173                             standin = lfutil.standin(lfile)
   173                             standin = lfutil.standin(lfile)
   174                             if standin not in ctx1:
   174                             if standin not in ctx1:
   175                                 # from second parent
   175                                 # from second parent
   176                                 modified.append(lfile)
   176                                 modified.append(lfile)
   177                             elif lfutil.readasstandin(ctx1[standin]) \
   177                             elif (lfutil.readasstandin(ctx1[standin])
   178                                     != lfutil.hashfile(self.wjoin(lfile)):
   178                                   != lfutil.hashfile(self.wjoin(lfile))):
   179                                 modified.append(lfile)
   179                                 modified.append(lfile)
   180                             else:
   180                             else:
   181                                 if listclean:
   181                                 if listclean:
   182                                     clean.append(lfile)
   182                                     clean.append(lfile)
   183                                 lfdirstate.normal(lfile)
   183                                 lfdirstate.normal(lfile)