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.
2 parents 2538dae + 1e0437f commit 9303992Copy full SHA for 9303992
setup.py
@@ -12,7 +12,7 @@
12
13
setup(
14
name="sentry-sdk",
15
- version="0.1.0-preview13",
+ version="0.1.0-preview14",
16
author="Sentry Team and Contributors",
17
author_email="hello@getsentry.com",
18
url="https://github.com/getsentry/sentry-python",
tests/test_client.py
@@ -133,7 +133,7 @@ def callback(scope):
133
134
def test_transport_works(httpserver, request, capsys):
135
httpserver.serve_content("ok", 200)
136
- with init("http://foobar@{}/123".format(httpserver.url[len("http://"):])):
+ with init("http://foobar@{}/123".format(httpserver.url[len("http://") :])):
137
capture_message("lol")
138
139
request.addfinalizer(lambda: Hub.current.bind_client(None))
0 commit comments