Mercurial > public > mercurial-scm > hg-stable
diff mercurial/changegroup.py @ 46927:cdbef062c6c8
changegroup: update comment
Gratuitous fix, I stumbled upon this comment while reading code.
Differential Revision: https://phab.mercurial-scm.org/D10339
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Thu, 08 Apr 2021 16:41:13 +0200 |
parents | d4ba4d51f85f |
children | d55b71393907 |
line wrap: on
line diff
--- 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]