summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorMarcel Admiraal <madmiraal@users.noreply.github.com>2020-12-12 10:05:42 +0000
committerMarcel Admiraal <madmiraal@users.noreply.github.com>2020-12-12 10:05:42 +0000
commit8ef5e3201c2dfbcdd80190691427300dc35428be (patch)
tree7506b771c84ae2c4015ae735d4d82855b3048101 /modules
parentd62dcb6b015918a6ddbba2e17f6d698f0ac6850e (diff)
Don't handle BaseException in build scripts
Diffstat (limited to 'modules')
-rw-r--r--modules/webm/libvpx/SCsub2
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