mercurial/revlogutils/rewrite.py
changeset 50496 e50d1fe7ebb4
parent 50486 85c5b4b507af
child 50500 0bd214f83216
equal deleted inserted replaced
50495:ed8cda1c18e1 50496:e50d1fe7ebb4
   826     with context():
   826     with context():
   827         files = list(
   827         files = list(
   828             entry
   828             entry
   829             for entry in repo.store.datafiles()
   829             for entry in repo.store.datafiles()
   830             if (
   830             if (
   831                 entry.is_revlog
   831                 entry.is_revlog and entry.revlog_type == store.FILEFLAGS_FILELOG
   832                 and entry.is_revlog_main
       
   833                 and entry.revlog_type == store.FILEFLAGS_FILELOG
       
   834             )
   832             )
   835         )
   833         )
   836 
   834 
   837         progress = ui.makeprogress(
   835         progress = ui.makeprogress(
   838             _(b"looking for affected revisions"),
   836             _(b"looking for affected revisions"),