Don't handle BaseException in build scripts

This commit is contained in:
Marcel Admiraal
2020-12-12 10:05:42 +00:00
parent d62dcb6b01
commit 8ef5e3201c
7 changed files with 8 additions and 10 deletions

View File

@@ -25,7 +25,7 @@ if "SCRIPT_AES256_ENCRYPTION_KEY" in os.environ:
txts = "0x" + e[i * 2 : i * 2 + 2]
try:
int(txts, 16)
except:
except Exception:
ec_valid = False
txt += txts
if not ec_valid: