diff mercurial/changelog.py @ 45569:64d18e9e8508

sidedata: rename `encode_copies_sidedata` to `encode_files_sidedata` We are storing more than copies information, so lets make it clear.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Tue, 22 Sep 2020 10:27:35 +0200
parents 89f0d9f87701
children 9a3563b46f52
line wrap: on
line diff
--- a/mercurial/changelog.py	Sat Sep 12 21:45:37 2020 +0900
+++ b/mercurial/changelog.py	Tue Sep 22 10:27:35 2020 +0200
@@ -570,7 +570,7 @@
         sortedfiles = sorted(files.touched)
         sidedata = None
         if self._copiesstorage == b'changeset-sidedata':
-            sidedata = metadata.encode_copies_sidedata(files)
+            sidedata = metadata.encode_files_sidedata(files)
 
         if extra:
             extra = encodeextra(extra)