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/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/update.py') diff --git a/python/update.py b/python/update.py index 5efd30e5..39348709 100644 --- a/python/update.py +++ b/python/update.py @@ -95,7 +95,7 @@ class UpdateProgressCallback: if self.func is not None: return self.func(progress, total) return True - except: + except Exception: log_error_for_exception("Unhandled Python exception in update progress callback") @property -- cgit v1.3.1