JSON: exporte dates au format ISO

This commit is contained in:
Emmanuel Viennet 2022-10-23 14:51:57 +02:00
parent caf88c5909
commit a92d2a6edf
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ def handle_invalid_usage(error):
# JSON ENCODING
class ScoDocJSONEncoder(JSONEncoder):
def default(self, o):
if isinstance(o, datetime.datetime):
if isinstance(o, (datetime.datetime, datetime.date)):
return o.isoformat()
return super().default(o)