# HG changeset patch # User Raphaël Gomès # Date 1617892873 -7200 # Node ID cdbef062c6c8a2409caf0d22d75e0f08ff4758fb # Parent 9c3e8456907178b2160e180e0a07b49292bc91c1 changegroup: update comment Gratuitous fix, I stumbled upon this comment while reading code. Differential Revision: https://phab.mercurial-scm.org/D10339 diff -r 9c3e84569071 -r cdbef062c6c8 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]