Mercurial > public > mercurial-scm > hg-stable
diff mercurial/exchange.py @ 34228:8e0358024a36
bundles: turn nbchanges int into a bytestr using pycompat.bytestr
Fixes some python 3 failures.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Fri, 15 Sep 2017 18:38:36 -0400 |
parents | e3cd724231ff |
children | e45ec589f962 |
line wrap: on
line diff
--- a/mercurial/exchange.py Sat Sep 16 11:09:08 2017 -0400 +++ b/mercurial/exchange.py Fri Sep 15 18:38:36 2017 -0400 @@ -1640,7 +1640,8 @@ part = bundler.newpart('changegroup', data=cgstream) if cgversions: part.addparam('version', version) - part.addparam('nbchanges', str(len(outgoing.missing)), mandatory=False) + part.addparam('nbchanges', '%d' % len(outgoing.missing), + mandatory=False) if 'treemanifest' in repo.requirements: part.addparam('treemanifest', '1')