From de8ef9f2dee910821d9b1083e1fa163986446fd5 Mon Sep 17 00:00:00 2001 From: Phillip Berndt Date: Sun, 17 May 2015 10:09:41 +0200 Subject: [PATCH] Reformated main exception handler (Breaks PEP 8; I'm not a fan of the 80 cols rule) --- autorandr.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/autorandr.py b/autorandr.py index f62c34d..f9e9f4c 100755 --- a/autorandr.py +++ b/autorandr.py @@ -720,6 +720,5 @@ if __name__ == '__main__': print("Exception: {0}".format(e.__class__.__name__)) sys.exit(2) - print("Unhandled exception ({0}). Please report this as a bug.".format( - e), file=sys.stderr) + print("Unhandled exception ({0}). Please report this as a bug.".format(e), file=sys.stderr) raise -- 2.39.5