diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -1249,7 +1249,9 @@ def debugbundle(ui, bundlepath, all=None p2 = chunkdata['p2'] cs = chunkdata['cs'] delta = chunkdata['data'] - ui.write("%s %s %s %s %s\n" % (hex(node), hex(p1), hex(p2), hex(cs), len(delta))) + ui.write("%s %s %s %s %s\n" % + (hex(node), hex(p1), hex(p2), + hex(cs), len(delta))) showchunks("changelog") showchunks("manifest")