mercurial/store.py
changeset 46646 e9901d01d135
parent 46455 374d7fff7cb5
child 46793 6266d19556ad
--- a/mercurial/store.py	Tue Feb 23 22:58:30 2021 -0800
+++ b/mercurial/store.py	Wed Feb 03 16:33:10 2021 -0800
@@ -433,8 +433,12 @@
         l.sort()
         return l
 
-    def changelog(self, trypending):
-        return changelog.changelog(self.vfs, trypending=trypending)
+    def changelog(self, trypending, concurrencychecker=None):
+        return changelog.changelog(
+            self.vfs,
+            trypending=trypending,
+            concurrencychecker=concurrencychecker,
+        )
 
     def manifestlog(self, repo, storenarrowmatch):
         rootstore = manifest.manifestrevlog(self.vfs)