From d1c5324757f310755ff4101adf0952e2ecad9838 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sun, 4 Nov 2018 09:05:31 +0100 Subject: [PATCH] cli: Improve representation of errors --- ecleankernel/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ecleankernel/cli.py b/ecleankernel/cli.py index bf8ed65..f10a522 100644 --- a/ecleankernel/cli.py +++ b/ecleankernel/cli.py @@ -1,5 +1,5 @@ # vim:fileencoding=utf-8 -# (c) 2011 Michał Górny +# (c) 2011-2018 Michał Górny # Released under the terms of the 2-clause BSD license. from __future__ import print_function @@ -262,7 +262,7 @@ def main(argv): if hasattr(e, 'friendly_desc'): print(e.friendly_desc) else: - print(' %s' % e) + print(' %r' % e) print(''' If you believe that the mentioned issue is a bug, please report it