diff options
author | jpakkane <jpakkane@gmail.com> | 2015-06-19 13:10:07 +0300 |
---|---|---|
committer | jpakkane <jpakkane@gmail.com> | 2015-06-19 13:10:07 +0300 |
commit | f15eb466fb5ab0713b1614bdc973d242bdb4b4ad (patch) | |
tree | 906822ecdb2b7b441f8e5268329046b0ee3e1def /run_tests.py | |
parent | 74b0fad8f11455f79c142baf95fa0ebb8ce86c62 (diff) | |
parent | bc865ab9436a7274a08f08cfa98d91340cfe419a (diff) | |
download | meson-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-x | run_tests.py | 2 |
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): |