We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0614e3 commit 03d1a39Copy full SHA for 03d1a39
sentry_sdk/client.py
@@ -95,7 +95,7 @@ def _check_should_capture(self, event):
95
exclusions = self.options["ignore_errors"]
96
exc_type = type(event._exc_value)
97
98
- if any(inspect.isclass(e) and issubclass(exc_type, e) for e in exclusions):
+ if any(issubclass(exc_type, e) for e in exclusions):
99
raise SkipEvent()
100
101
if _most_recent_exception.get(None) is event._exc_value:
0 commit comments