Skip to content

Commit

Permalink
Release v0.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
fluffy-critter committed Sep 8, 2020
1 parent d433544 commit 12b3a29
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion authl/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
""" version """
__version__ = "0.4.4"
__version__ = "0.4.5"
4 changes: 2 additions & 2 deletions authl/tokens.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ def put(self, value):
def get(self, key, to_type=tuple):
try:
return to_type(self._serializer.loads(key))
except itsdangerous.BadData:
raise KeyError("Invalid token")
except itsdangerous.BadData as err:
raise KeyError("Invalid token") from err

def remove(self, key):
pass
50 changes: 25 additions & 25 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 = "Authl"
version = "0.4.4"
version = "0.4.5"
description = "Framework-agnostic authentication wrapper"
authors = ["fluffy <fluffy@beesbuzz.biz>"]
license = "MIT"
Expand Down

0 comments on commit 12b3a29

Please sign in to comment.