aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorjpakkane <jpakkane@gmail.com>2015-06-19 13:10:07 +0300
committerjpakkane <jpakkane@gmail.com>2015-06-19 13:10:07 +0300
commitf15eb466fb5ab0713b1614bdc973d242bdb4b4ad (patch)
tree906822ecdb2b7b441f8e5268329046b0ee3e1def /run_tests.py
parent74b0fad8f11455f79c142baf95fa0ebb8ce86c62 (diff)
parentbc865ab9436a7274a08f08cfa98d91340cfe419a (diff)
downloadmeson-f15eb466fb5ab0713b1614bdc973d242bdb4b4ad.zip
meson-f15eb466fb5ab0713b1614bdc973d242bdb4b4ad.tar.gz
meson-f15eb466fb5ab0713b1614bdc973d242bdb4b4ad.tar.bz2
Merge pull request #162 from mesonbuild/lint_errors
Fix some bugs when linting code
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 3549e11..673c55b 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):