changeset 46897 | 1c52d77d7861 |
parent 46896 | cf49e54ef965 |
child 47062 | f38bf44e077f |
child 47084 | 27f1191b1305 |
--- a/mercurial/upgrade_utils/engine.py Tue Apr 06 10:38:11 2021 +0200 +++ b/mercurial/upgrade_utils/engine.py Tue Apr 06 10:38:27 2021 +0200 @@ -390,7 +390,7 @@ are cloned""" for path, kind, st in sorted(srcrepo.store.vfs.readdir(b'', stat=True)): # don't copy revlogs as they are already cloned - if path.endswith((b'.i', b'.d', b'.n', b'.nd')): + if store.revlog_type(path) is not None: continue # Skip transaction related files. if path.startswith(b'undo'):