Skip to content

Commit 185f401

Browse files
committed
merge - Fix for issue14426 - buildbots here I come
2 parents 337b2bf + aeeba26 commit 185f401

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/http/cookies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ def OutputString(self, attrs=None):
439439
(?P<val> # Start of group 'val'
440440
"(?:[^\\"]|\\.)*" # Any doublequoted string
441441
| # or
442-
\w{3},\s[\w\d-]{9,11}\s[\d:]{8}\sGMT # Special case for "expires" attr
442+
\w{3},\s[\w\d\s-]{9,11}\s[\d:]{8}\sGMT # Special case for "expires" attr
443443
| # or
444444
""" + _LegalCharsPatt + r"""* # Any word or empty string
445445
) # End of group 'val'

0 commit comments

Comments
 (0)