Mercurial > hg-stable
changeset 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 | 9c3e84569071 |
children | 93c224dc099b |
files | mercurial/changegroup.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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]