From 8ef5e3201c2dfbcdd80190691427300dc35428be Mon Sep 17 00:00:00 2001 From: Marcel Admiraal Date: Sat, 12 Dec 2020 10:05:42 +0000 Subject: Don't handle BaseException in build scripts --- modules/webm/libvpx/SCsub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/webm/libvpx/SCsub b/modules/webm/libvpx/SCsub index d0744fa313..67d3f1bebd 100644 --- a/modules/webm/libvpx/SCsub +++ b/modules/webm/libvpx/SCsub @@ -278,7 +278,7 @@ if webm_cpu_x86: try: yasm_found = True subprocess.Popen([yasm_path, "--version"], stdout=devnull, stderr=devnull).communicate() - except: + except Exception: yasm_found = False if yasm_found: break -- cgit v1.2.3