Ver a proveniência

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 há 12 anos
ascendente
cometimento
b784fc7cd8
1 ficheiros alterados com 2 adições e 2 eliminações
  1. +2
    -2
      earwigbot/wiki/site.py

+ 2
- 2
earwigbot/wiki/site.py Ver ficheiro

@@ -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()


Carregando…
Cancelar
Guardar