graphlog: correctly handle calls in subdirectories
#!/usr/bin/env python# Filter output by the progress extension to make it readable in testsimport sys, refor line in sys.stdin: line = re.sub(r'\r+[^\n]', lambda m: '\n' + m.group()[-1:], line) sys.stdout.write(line)print