Skip to content

Commit e532225

Browse files
frostburnc00kiemon5ter
authored andcommitted
Fix a typo in Saml2Client.do_logout
Use "not_on_or_after" instead of "not_on_of_after" for the expiry entry in the state.
1 parent 25bbf67 commit e532225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/saml2/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def do_logout(self, name_id, entity_ids, reason, expire, sign=None,
262262
"entity_ids": entity_ids,
263263
"name_id": code(name_id),
264264
"reason": reason,
265-
"not_on_of_after": expire,
265+
"not_on_or_after": expire,
266266
"sign": sign}
267267

268268
responses[entity_id] = (binding, http_info)

0 commit comments

Comments
 (0)