Skip to content

Commit 62c16cb

Browse files
committed
Applied a patch to django's test client, found by olau@: http://code.djangoproject.com/changeset/12343. Fixes issue ietf-tools#359.
- Legacy-Id: 2495
1 parent dfcfc5d commit 62c16cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

django/test/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def request(self, **request):
193193
using the arguments to the request.
194194
"""
195195
environ = {
196-
'HTTP_COOKIE': self.cookies,
196+
'HTTP_COOKIE': self.cookies.output(header='', sep='; '),
197197
'PATH_INFO': '/',
198198
'QUERY_STRING': '',
199199
'REMOTE_ADDR': '127.0.0.1',

0 commit comments

Comments
 (0)