changegroup: update comment
authorRaphaël Gomès <rgomes@octobus.net>
Thu, 08 Apr 2021 16:41:13 +0200
changeset 46927 cdbef062c6c8
parent 46926 9c3e84569071
child 46928 93c224dc099b
changegroup: update comment Gratuitous fix, I stumbled upon this comment while reading code. Differential Revision: https://phab.mercurial-scm.org/D10339
mercurial/changegroup.py
--- a/mercurial/changegroup.py	Mon Apr 12 23:31:54 2021 -0400
+++ b/mercurial/changegroup.py	Thu Apr 08 16:41:13 2021 +0200
@@ -570,7 +570,7 @@
         """
         chain = None
         for chunkdata in iter(lambda: self.deltachunk(chain), {}):
-            # Chunkdata: (node, p1, p2, cs, deltabase, delta, flags)
+            # Chunkdata: (node, p1, p2, cs, deltabase, delta, flags, sidedata)
             yield chunkdata
             chain = chunkdata[0]