tests/filtercr.py
author Matt Mackall <mpm@selenic.com>
Wed, 06 Apr 2011 15:10:47 -0500
branchstable
changeset 13900 a3403d5b0af3
parent 13141 6cfe17c19ba2
permissions -rwxr-xr-x
url: use a regex to hide unsupported ssh passwords (issue2754)

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