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_passes.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_passes.py')
-rwxr-xr-x[-rw-r--r--] | scripts/fuzz_passes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/fuzz_passes.py b/scripts/fuzz_passes.py index 960d584f0..42a083b11 100644..100755 --- a/scripts/fuzz_passes.py +++ b/scripts/fuzz_passes.py @@ -105,7 +105,7 @@ try: try: apply_passes(smaller) assert run() == normal - except: + except Exception: # this failed too, so it's a good reduction passes = smaller print '>>> reduction successful' |