projects
/
services
/
python-requests.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bf499a8
)
use ";" instead "\r\n" as separator for cookies as is better supported
author
Rolando Espinoza La fuente
<darkrho@gmail.com>
Wed, 16 Nov 2011 04:04:48 +0000
(
00:04
-0400)
committer
Rolando Espinoza La fuente
<darkrho@gmail.com>
Wed, 16 Nov 2011 04:04:48 +0000
(
00:04
-0400)
in odd web servers.
requests/models.py
patch
|
blob
|
history
diff --git
a/requests/models.py
b/requests/models.py
index 75b985685d7b0d165ebceaf601f909175e4acd07..486a78838b08f8642bff1127d9f0a0ec4806e0ff 100644
(file)
--- a/
requests/models.py
+++ b/
requests/models.py
@@
-431,7
+431,7
@@
class Request(object):
c[k] = v
# Turn it into a header.
- cookie_header = c.output(header='').strip()
+ cookie_header = c.output(header=''
, sep='; '
).strip()
# Attach Cookie header to request.
self.headers['Cookie'] = cookie_header