Skip to content

Commit

Permalink
Merge pull request #5 from armurox/add-version-0.0.3
Browse files Browse the repository at this point in the history
Version 0.0.3
  • Loading branch information
armurox authored Nov 14, 2024
2 parents 510db99 + 66809dd commit f66d37b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loggingredactor/redacting_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def filter(self, record):
def redact(self, content, key=None):
try:
content_copy = copy.deepcopy(content)
except TypeError:
except Exception:
return content
if content_copy:
if isinstance(content_copy, dict):
Expand Down

0 comments on commit f66d37b

Please sign in to comment.