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 007e770 commit 5741196Copy full SHA for 5741196
sentry_sdk/spotlight.py
@@ -81,8 +81,8 @@ def capture_envelope(self, envelope):
81
CHARSET_PREFIX = "charset="
82
BODY_CLOSE_TAG = "</body>"
83
BODY_CLOSE_TAG_POSSIBILITIES = [
84
- "".join(l)
85
- for l in product(*zip(BODY_CLOSE_TAG.upper(), BODY_CLOSE_TAG.lower()))
+ "".join(chars)
+ for chars in product(*zip(BODY_CLOSE_TAG.upper(), BODY_CLOSE_TAG.lower()))
86
]
87
88
class SpotlightMiddleware(MiddlewareMixin):
0 commit comments