browser2: Fix call to wrong method name
This commit is contained in:
parent
e793fd14da
commit
083caf15e5
1 changed files with 1 additions and 1 deletions
|
|
@ -196,7 +196,7 @@ class CookieJar(object):
|
|||
now = datetime.now()
|
||||
cookie.expires = now + timedelta(seconds=cookie.max_age)
|
||||
if url.scheme == 'https' \
|
||||
and self._match_domain_list(self.SECURE_DOMAINS, cookie.domain):
|
||||
and self._domain_match_list(self.SECURE_DOMAINS, cookie.domain):
|
||||
cookie.secure = True
|
||||
|
||||
def from_response(self, response):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue