From 4dc8dbb7c1e2b451c98d5b212a2abfc5cf47e976 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Fri, 19 Jun 2015 10:37:54 +0300 Subject: run_tests: Bad first argument 'Exception' given to super() Signed-off-by: Igor Gnatenko --- run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.py b/run_tests.py index 3d8589409..2e9568983 100755 --- a/run_tests.py +++ b/run_tests.py @@ -48,7 +48,7 @@ meson_command = './meson.py' class StopException(Exception): def __init__(self): - super(Exception, self).__init__('Stopped by user') + super().__init__('Stopped by user') stop = False def stop_handler(signal, frame): -- cgit v1.2.3