diff options
author | Taiju Tsuiki <tzik@users.noreply.github.com> | 2017-10-25 07:13:04 +0900 |
---|---|---|
committer | Derek Schuff <dschuff@chromium.org> | 2017-10-24 15:13:04 -0700 |
commit | de4b36f88138637132f428789187cde9fb499dd2 (patch) | |
tree | 8753a6995ab87ab26b47a00f22410e534a5918fa /scripts/fuzz_relooper.py | |
parent | a26b8ce4e37ebf0ddf5f59ee8cd35e6177d16db3 (diff) | |
download | binaryen-de4b36f88138637132f428789187cde9fb499dd2.tar.gz binaryen-de4b36f88138637132f428789187cde9fb499dd2.tar.bz2 binaryen-de4b36f88138637132f428789187cde9fb499dd2.zip |
Fix flake8 failures in scripts/ (#1239)
flake8 starts warning on bare "except:" in python scripts, and all CI job is failing for that.
Diffstat (limited to 'scripts/fuzz_relooper.py')
-rwxr-xr-x[-rw-r--r--] | scripts/fuzz_relooper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/fuzz_relooper.py b/scripts/fuzz_relooper.py index 52c296e58..16a441936 100644..100755 --- a/scripts/fuzz_relooper.py +++ b/scripts/fuzz_relooper.py @@ -56,7 +56,7 @@ while True: 'fuzz.c']: try: os.unlink(temp) - except: + except OSError: pass # parts |