Skip to content

Commit

Permalink
Fix router wrappers after 9e2bb74
Browse files Browse the repository at this point in the history
  • Loading branch information
gi0baro committed May 4, 2023
1 parent 9e2bb74 commit e981184
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion emmett_sentry/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.0"
__version__ = "0.4.1"
4 changes: 2 additions & 2 deletions emmett_sentry/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def _routing_rec_http(router, name, match, dispatch):
return rec_cls(
name=name,
match=match,
dispatch=wrapper(ext, name, dispatch)
dispatch=wrapper(ext, dispatch)
)

return _routing_rec_http
Expand All @@ -230,7 +230,7 @@ def _routing_rec_ws(router, name, match, dispatch, flow_recv, flow_send):
return rec_cls(
name=name,
match=match,
dispatch=wrapper(ext, name, dispatch),
dispatch=wrapper(ext, dispatch),
flow_recv=flow_recv,
flow_send=flow_send
)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "emmett-sentry"
version = "0.4.0"
version = "0.4.1"
description = "Sentry extension for Emmett framework"
authors = ["Giovanni Barillari <[email protected]>"]
license = "BSD-3-Clause"
Expand Down

0 comments on commit e981184

Please sign in to comment.