# HG changeset patch # User Matt Mackall # Date 1300847271 18000 # Node ID ce47a0c10224c9727d62e83a85a83f25616b6312 # Parent 378522bdc05965cba3651f6e09d443298e07fba9 debugbundle: fix up long line caught by check-code diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -1249,7 +1249,9 @@ 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")