diff -r e96f75857361 -r 7edaf91c7886 mercurial/hg.py --- a/mercurial/hg.py Mon May 17 15:27:29 2021 +0200 +++ b/mercurial/hg.py Mon May 17 15:42:18 2021 +0200 @@ -52,6 +52,7 @@ verify as verifymod, vfs as vfsmod, ) +from .interfaces import repository as repositorymod from .utils import ( hashutil, stringutil, @@ -1054,7 +1055,7 @@ # as the only "bad" outcome would be some slowness. That potential # slowness already affect reader. with destrepo.lock(): - destrepo.updatecaches(full=b"post-clone") + destrepo.updatecaches(caches=repositorymod.CACHES_POST_CLONE) finally: release(srclock, destlock) if cleandir is not None: