From 030cce4beb7f610667b9fb551032fcfeef6ab4a7 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 28 Jan 2014 15:50:11 +0100 Subject: [PATCH] run_checks: Print exception properly --- run_checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_checks.py b/run_checks.py index b8d033d6c..ab539401b 100644 --- a/run_checks.py +++ b/run_checks.py @@ -23,7 +23,7 @@ def run(name, args=None): print('{}: {}'.format(e.__class__.__name__, e)) status[name] = None except Exception as e: - print(e) + print('{}: {}'.format(e.__class__.__name__, e)) status[name] = None print()