diff options
| author | Josh Ferrell <josh@vector35.com> | 2026-04-15 11:21:40 -0400 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2026-04-15 11:21:44 -0400 |
| commit | b4ccb82ea76b98457d9dc59424632ca412511ed4 (patch) | |
| tree | 2eb4d7875181cee7b05413fa6dcdaea3a1d95981 /python/examples/mappedview.py | |
| parent | c08cf3f1eaa73a5171c27044100479998104d58a (diff) | |
[Python API] Replace bare "except:" with "except Exception:" to fix signal propagation
Diffstat (limited to 'python/examples/mappedview.py')
| -rw-r--r-- | python/examples/mappedview.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/examples/mappedview.py b/python/examples/mappedview.py index 32963ea2..062f61da 100644 --- a/python/examples/mappedview.py +++ b/python/examples/mappedview.py @@ -143,7 +143,7 @@ class MappedView(BinaryView): # Note: This MappedView (Python) BinaryView implementation is incomplete. It ignores platform, section, and segment settings. # It's preferred that values saved in the settings system be imageBase agnostic. return True - except: + except Exception: log_error(traceback.format_exc()) return False |
