mercurial/commit.py
changeset 45324 6c56277317c2
parent 45323 aea6a812f7cb
child 45326 99614011892b
--- a/mercurial/commit.py	Sat Jul 25 15:49:12 2020 +0200
+++ b/mercurial/commit.py	Sat Jul 25 15:55:09 2020 +0200
@@ -84,7 +84,7 @@
         repo.changelog.delayupdate(tr)
         n = repo.changelog.add(
             mn,
-            files.touched,
+            files,
             ctx.description(),
             tr,
             p1.node(),
@@ -92,10 +92,6 @@
             user,
             ctx.date(),
             extra,
-            files.copied_from_p1,
-            files.copied_from_p2,
-            files.added,
-            files.removed,
         )
         xp1, xp2 = p1.hex(), p2 and p2.hex() or b''
         repo.hook(