diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-12-12 12:23:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-12 12:23:07 +0100 |
commit | 2760f5d0b401670e6ec976ac90ff345234fdfea3 (patch) | |
tree | 5b7d81791caac51d1c4d1014b43d58472cf84768 /modules | |
parent | 8c045fc9ff8101a3581045ed4baa02565850aebd (diff) | |
parent | 8ef5e3201c2dfbcdd80190691427300dc35428be (diff) |
Merge pull request #44315 from madmiraal/fix-handles-baseexception
Don't handle BaseException in build scripts
Diffstat (limited to 'modules')
-rw-r--r-- | modules/webm/libvpx/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
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 |