Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion flask_saml2/idp/sphandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def format_datetime(self, value: datetime.datetime) -> str:
formatting, and don't support the format produced by
:meth:`datetime.datetime.isoformat`.
"""
return value.isoformat()
return value.replace(tzinfo=None).isoformat(timespec='seconds')

def __str__(self):
if self.display_name:
Expand Down
2 changes: 1 addition & 1 deletion flask_saml2/sp/idphandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def format_datetime(self, value: datetime.datetime) -> str:
formatting, and don't support the format produced by
:meth:`datetime.datetime.isoformat`.
"""
return value.isoformat()
return value.replace(tzinfo=None).isoformat(timespec='seconds') + 'Z'

def __str__(self):
if self.display_name:
Expand Down