We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bff80c0 commit f7276c4Copy full SHA for f7276c4
CHANGELOG.md
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## unreleased
9
10
+- Fix django cookie expiry time format to make it consistent with other frameworks
11
+
12
## [0.11.11] - 2022-12-26
13
14
- Updates dashboard version
supertokens_python/framework/django/django_response.py
@@ -51,7 +51,7 @@ def set_cookie(
51
key=key,
52
value=value,
53
expires=datetime.fromtimestamp(ceil(expires / 1000)).strftime(
54
- "%A, %B %d, %Y %H:%M:%S"
+ "%a, %d %b %Y %H:%M:%S GMT"
55
),
56
path=path,
57
domain=domain,
0 commit comments