Don't handle BaseException in build scripts
This commit is contained in:
parent
d62dcb6b01
commit
8ef5e3201c
7 changed files with 8 additions and 10 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue