We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9afd434 commit 2282609Copy full SHA for 2282609
1 file changed
sentry_sdk/integrations/django/__init__.py
@@ -343,7 +343,9 @@ def _before_get_response(request):
343
getattr(fn, "view_class", fn)
344
)
345
elif integration.transaction_style == "url":
346
- scope.transaction = LEGACY_RESOLVER.resolve(request.path_info, integration.url_conf)
+ scope.transaction = LEGACY_RESOLVER.resolve(
347
+ request.path_info, integration.url_conf
348
+ )
349
except Exception:
350
pass
351
0 commit comments