# HG changeset patch # User Martin Geisler # Date 1274121748 -7200 # Node ID db2897926d14925ae957349ae9c8b726ba161aee # Parent 3c368a1c962dbd84b4a8cc55493e04ac96d8f733 minirst: fix debug code diff -r 3c368a1c962d -r db2897926d14 mercurial/minirst.py --- a/mercurial/minirst.py Mon May 03 14:00:34 2010 -0500 +++ b/mercurial/minirst.py Mon May 17 20:42:28 2010 +0200 @@ -357,7 +357,7 @@ text = open(sys.argv[1]).read() blocks = debug(findblocks, text) blocks = debug(findliteralblocks, blocks) - blocks = debug(prunecontainers, blocks, sys.argv[2:]) + blocks, pruned = debug(prunecontainers, blocks, sys.argv[2:]) blocks = debug(inlineliterals, blocks) blocks = debug(splitparagraphs, blocks) blocks = debug(updatefieldlists, blocks)