소스 검색

Fix a silly bug in passing cookiejars to Site objects.

* Apparently bool(cookiejar) is False if the cookiejar doesn't
contain any cookies, even if it exists. Change `if cookiejar` to
`if cookiejar is not None` to get around this.
tags/v0.1^2
Ben Kurtovic 12 년 전
부모
커밋
b784fc7cd8
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      earwigbot/wiki/site.py

+ 2
- 2
earwigbot/wiki/site.py 파일 보기

@@ -101,7 +101,7 @@ class Site(object):
based on your config file and the sites database. We accept a bunch of
kwargs, but the only ones you really "need" are *base_url* and
*script_path*; this is enough to figure out an API url. *login*, a
tuple of (username, password), is highly recommended. *cookiejar will
tuple of (username, password), is highly recommended. *cookiejar* will
be used to store cookies, and we'll use a normal CookieJar if none is
given.

@@ -146,7 +146,7 @@ class Site(object):
self._search_config = {}

# Set up cookiejar and URL opener for making API queries:
if cookiejar:
if cookiejar is not None:
self._cookiejar = cookiejar
else:
self._cookiejar = CookieJar()


불러오는 중...
취소
저장