summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-12-12 12:23:07 +0100
committerGitHub <noreply@github.com>2020-12-12 12:23:07 +0100
commit2760f5d0b401670e6ec976ac90ff345234fdfea3 (patch)
tree5b7d81791caac51d1c4d1014b43d58472cf84768 /modules
parent8c045fc9ff8101a3581045ed4baa02565850aebd (diff)
parent8ef5e3201c2dfbcdd80190691427300dc35428be (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/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