Skip to content

Commit

Permalink
Merge pull request #45 from certego/develop
Browse files Browse the repository at this point in the history
0.4.3
  • Loading branch information
0ssigeno authored Jan 18, 2023
2 parents e4b762d + 240bb8e commit ae2a325
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion certego_saas/ext/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def _should_log(exc, context) -> bool:

if view:
code = getattr(exc, "status_code", None)
if 400 <= code <= 498 or exc.__class__.__name__ == "Http404":
if code and 400 <= code <= 498 or exc.__class__.__name__ == "Http404":
flag = False

return flag
2 changes: 1 addition & 1 deletion certego_saas/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.4.2"
VERSION = "0.4.3"

0 comments on commit ae2a325

Please # to comment.