mercurial/localrepo.py
changeset 47085 3aab2330b7d3
parent 47083 81eb7091c494
child 47221 5eb5b866e517
--- a/mercurial/localrepo.py	Mon Apr 19 11:22:24 2021 +0200
+++ b/mercurial/localrepo.py	Mon Apr 19 11:22:24 2021 +0200
@@ -49,7 +49,6 @@
     match as matchmod,
     mergestate as mergestatemod,
     mergeutil,
-    metadata as metadatamod,
     namespaces,
     narrowspec,
     obsolete,
@@ -90,6 +89,7 @@
 from .revlogutils import (
     concurrency_checker as revlogchecker,
     constants as revlogconst,
+    sidedata as sidedatamod,
 )
 
 release = lockmod.release
@@ -1407,7 +1407,7 @@
 
         self._wanted_sidedata = set()
         self._sidedata_computers = {}
-        metadatamod.set_sidedata_spec_for_repo(self)
+        sidedatamod.set_sidedata_spec_for_repo(self)
 
     def _getvfsward(self, origfunc):
         """build a ward for self.vfs"""