aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2015-06-19 10:37:54 +0300
committerIgor Gnatenko <i.gnatenko.brain@gmail.com>2015-06-19 10:37:54 +0300
commit4dc8dbb7c1e2b451c98d5b212a2abfc5cf47e976 (patch)
tree702e5dfc231e9e5b81877d062dab453fc7e41c15 /run_tests.py
parentf1bc1e2757db5d719a2b7c51fb4936d0f79d8767 (diff)
downloadmeson-4dc8dbb7c1e2b451c98d5b212a2abfc5cf47e976.zip
meson-4dc8dbb7c1e2b451c98d5b212a2abfc5cf47e976.tar.gz
meson-4dc8dbb7c1e2b451c98d5b212a2abfc5cf47e976.tar.bz2
run_tests: Bad first argument 'Exception' given to super()
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py
index 3d85894..2e95689 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):