Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,9 @@ def datetime_serializer(obj):
"""Custom serializer to pass to json dump functions"""
if isinstance(obj, datetime):
return str(obj)
if isinstance(obj, bytes):
# e.g. WAFv2 ByteMatchStatement.SearchString is returned by boto3 as bytes
return obj.decode("utf-8", errors="replace")
# fall back to json default behaviour:
raise TypeError("%r is not JSON serializable" % obj)

Expand Down
Loading