tests/filtercr.py
author Patrick Mezard <pmezard@gmail.com>
Sun, 13 Mar 2011 15:07:44 +0100
changeset 13613 85b80261ca10
parent 13141 6cfe17c19ba2
permissions -rwxr-xr-x
eol: separate .hgeol parsing from merge in ui This will help refactoring the hook.

#!/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