This repository has been archived on 2021-03-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
moulinette/report.py

8 lines
221 B
Python

#!/usr/bin/python
def perr(path, descr, line):
if line >= 0:
print("\033[3m{0}\033[m in `{1}' on line {2}".format(descr, path, line))
else:
print("\033[3m{0}\033[m in `{1}'".format(descr, path))