Skip to content

Commit 75a8e3c

Browse files
committed
fix: Typos
1 parent 16aaed1 commit 75a8e3c

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ A major release `N` implies the previous release `N-1` will no longer receive up
202202

203203
## 0.11.0
204204

205-
* Fix type hints for the logging integration. Thansk Steven Dignam!
205+
* Fix type hints for the logging integration. Thanks Steven Dignam!
206206
* Fix an issue where scope/context data would leak in applications that use `gevent` with its threading monkeypatch. The fix is to avoid usage of contextvars in such environments. Thanks Ran Benita!
207207
* Fix a reference cycle in the `ThreadingIntegration` that led to exceptions on interpreter shutdown. Thanks Guang Tian Li!
208208
* Fix a series of bugs in the stdlib integration that broke usage of `subprocess`.

sentry_sdk/integrations/bottle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def setup_once():
5959
try:
6060
version = tuple(map(int, BOTTLE_VERSION.split(".")))
6161
except (TypeError, ValueError):
62-
raise DidNotEnable("Unparseable Bottle version: {}".format(version))
62+
raise DidNotEnable("Unparsable Bottle version: {}".format(version))
6363

6464
if version < (0, 12):
6565
raise DidNotEnable("Bottle 0.12 or newer required.")

sentry_sdk/integrations/falcon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def setup_once():
104104
try:
105105
version = tuple(map(int, FALCON_VERSION.split(".")))
106106
except (ValueError, TypeError):
107-
raise DidNotEnable("Unparseable Falcon version: {}".format(FALCON_VERSION))
107+
raise DidNotEnable("Unparsable Falcon version: {}".format(FALCON_VERSION))
108108

109109
if version < (1, 4):
110110
raise DidNotEnable("Falcon 1.4 or newer required.")

sentry_sdk/integrations/flask.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def setup_once():
6767
try:
6868
version = tuple(map(int, FLASK_VERSION.split(".")[:3]))
6969
except (ValueError, TypeError):
70-
raise DidNotEnable("Unparseable Flask version: {}".format(FLASK_VERSION))
70+
raise DidNotEnable("Unparsable Flask version: {}".format(FLASK_VERSION))
7171

7272
if version < (0, 11):
7373
raise DidNotEnable("Flask 0.11 or newer is required.")

sentry_sdk/integrations/rq.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def setup_once():
3939
try:
4040
version = tuple(map(int, RQ_VERSION.split(".")[:3]))
4141
except (ValueError, TypeError):
42-
raise DidNotEnable("Unparseable RQ version: {}".format(RQ_VERSION))
42+
raise DidNotEnable("Unparsable RQ version: {}".format(RQ_VERSION))
4343

4444
if version < (0, 6):
4545
raise DidNotEnable("RQ 0.6 or newer is required.")

sentry_sdk/integrations/sanic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def setup_once():
4646
try:
4747
version = tuple(map(int, SANIC_VERSION.split(".")))
4848
except (TypeError, ValueError):
49-
raise DidNotEnable("Unparseable Sanic version: {}".format(SANIC_VERSION))
49+
raise DidNotEnable("Unparsable Sanic version: {}".format(SANIC_VERSION))
5050

5151
if version < (0, 8):
5252
raise DidNotEnable("Sanic 0.8 or newer required.")

sentry_sdk/integrations/sqlalchemy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def setup_once():
3131
version = tuple(map(int, SQLALCHEMY_VERSION.split("b")[0].split(".")))
3232
except (TypeError, ValueError):
3333
raise DidNotEnable(
34-
"Unparseable SQLAlchemy version: {}".format(SQLALCHEMY_VERSION)
34+
"Unparsable SQLAlchemy version: {}".format(SQLALCHEMY_VERSION)
3535
)
3636

3737
if version < (1, 2):

sentry_sdk/transport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ def make_transport(options):
372372
elif callable(ref_transport):
373373
return _FunctionTransport(ref_transport) # type: ignore
374374

375-
# if a transport class is given only instanciate it if the dsn is not
375+
# if a transport class is given only instantiate it if the dsn is not
376376
# empty or None
377377
if options["dsn"]:
378378
return transport_cls(options)

0 commit comments

Comments
 (0)