tests/filtercr.py
author Mads Kiilerich <mads@kiilerich.com>
Mon, 30 Jul 2012 02:38:32 +0200
branchstable
changeset 17284 f3a7f05f474a
parent 13141 6cfe17c19ba2
permissions -rwxr-xr-x
test-histedit-outgoing.t: remove unused section

#!/usr/bin/env python

# Filter output by the progress extension to make it readable in tests

import sys, re

for line in sys.stdin:
    line = re.sub(r'\r+[^\n]', lambda m: '\n' + m.group()[-1:], line)
    sys.stdout.write(line)
print