diff options
Diffstat (limited to 'Biz/lint.py')
-rwxr-xr-x | Biz/lint.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Biz/lint.py b/Biz/lint.py index 88720b3..4d760d2 100755 --- a/Biz/lint.py +++ b/Biz/lint.py @@ -35,7 +35,8 @@ def run(cmd, file): msg = ret.stdout.decode("utf-8").strip() print(Color.WARN + f"lint error: {cmd}: {file}" + Color.END) if msg: - print(msg) + for line in msg.split("\n"): + print(" " + line) def changed_files(): |