##// END OF EJS Templates
clone: always close source repository (issue2491)...
clone: always close source repository (issue2491) This is especially needed for cloning from bundles as a temporary bundlerepository is created which needs to be deleted after clone has finished.

File last commit:

r13141:6cfe17c1 default
r16352:4d875bb5 stable
Show More
filtercr.py
10 lines | 237 B | text/x-python | PythonLexer
#!/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