From b4ccb82ea76b98457d9dc59424632ca412511ed4 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Wed, 15 Apr 2026 11:21:40 -0400 Subject: [Python API] Replace bare "except:" with "except Exception:" to fix signal propagation --- python/enterprise.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/enterprise.py') diff --git a/python/enterprise.py b/python/enterprise.py index 83a95c27..4bc21d9b 100644 --- a/python/enterprise.py +++ b/python/enterprise.py @@ -363,7 +363,7 @@ class LicenseCheckout: if not is_initialized(): try: initialize() - except: + except Exception: # Named/computer licenses don't need this flow at all if not is_floating_license(): return -- cgit v1.3.1