summaryrefslogtreecommitdiff
path: root/scripts/fuzz_passes.py
diff options
context:
space:
mode:
authorTaiju Tsuiki <tzik@users.noreply.github.com>2017-10-25 07:13:04 +0900
committerDerek Schuff <dschuff@chromium.org>2017-10-24 15:13:04 -0700
commitde4b36f88138637132f428789187cde9fb499dd2 (patch)
tree8753a6995ab87ab26b47a00f22410e534a5918fa /scripts/fuzz_passes.py
parenta26b8ce4e37ebf0ddf5f59ee8cd35e6177d16db3 (diff)
downloadbinaryen-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.py2
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'