mirror of
https://github.com/httpie/cli.git
synced 2024-11-22 07:43:20 +01:00
Require Requests v1.0.3.
This commit is contained in:
parent
e5edb66ae8
commit
fe16f425a9
@ -1101,6 +1101,7 @@ Changelog
|
||||
*You can click a version name to see a diff with the previous one.*
|
||||
|
||||
* `0.4.0-alpha`_
|
||||
* Requests v1.0.3.
|
||||
* Added `httpie` management command.
|
||||
* Added support for credentials in URL.
|
||||
* Added ``--no-option`` for every ``--option`` to be config-friendly.
|
||||
|
@ -148,10 +148,11 @@ class Session(BaseConfigDict):
|
||||
|
||||
@cookies.setter
|
||||
def cookies(self, jar):
|
||||
# http://docs.python.org/2/library/cookielib.html#cookie-objects
|
||||
excluded = [
|
||||
'_rest', 'name', 'port_specified',
|
||||
'domain_specified', 'domain_initial_dot',
|
||||
'path_specified', 'comment', 'comment_url'
|
||||
'path_specified', 'comment', 'comment_url',
|
||||
]
|
||||
self['cookies'] = {}
|
||||
for host in jar._cookies.values():
|
||||
|
Loading…
Reference in New Issue
Block a user