From de4b36f88138637132f428789187cde9fb499dd2 Mon Sep 17 00:00:00 2001 From: Taiju Tsuiki Date: Wed, 25 Oct 2017 07:13:04 +0900 Subject: Fix flake8 failures in scripts/ (#1239) flake8 starts warning on bare "except:" in python scripts, and all CI job is failing for that. --- scripts/fuzz_relooper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 scripts/fuzz_relooper.py (limited to 'scripts/fuzz_relooper.py') diff --git a/scripts/fuzz_relooper.py b/scripts/fuzz_relooper.py old mode 100644 new mode 100755 index 52c296e58..16a441936 --- 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 -- cgit v1.2.3