Просмотр исходного кода

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 лет назад
Родитель
Сommit
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()


Загрузка…
Отмена
Сохранить