diff mercurial/changelog.py @ 45635:9003e6524f78

changing-files: drop the now useless changelogrevision argument Since all filename are now included in the sidedata block, we no longer need to decode the `files` from the revision. Differential Revision: https://phab.mercurial-scm.org/D9091
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Tue, 15 Sep 2020 10:49:50 +0200
parents 147fb889278b
children 053c9014fd39
line wrap: on
line diff
--- a/mercurial/changelog.py	Tue Sep 15 10:55:17 2020 +0200
+++ b/mercurial/changelog.py	Tue Sep 15 10:49:50 2020 +0200
@@ -305,7 +305,7 @@
         if self._changes is not None:
             return self._changes
         if self._cpsd:
-            changes = metadata.decode_files_sidedata(self, self._sidedata)
+            changes = metadata.decode_files_sidedata(self._sidedata)
         else:
             changes = metadata.ChangingFiles(
                 touched=self.files or (),