diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-12-12 10:05:42 +0000 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-12-12 10:05:42 +0000 |
commit | 8ef5e3201c2dfbcdd80190691427300dc35428be (patch) | |
tree | 7506b771c84ae2c4015ae735d4d82855b3048101 /modules | |
parent | d62dcb6b015918a6ddbba2e17f6d698f0ac6850e (diff) |
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 |