first step in python3 support
This commit is contained in:
parent
7c1e08eb96
commit
6fcac89dd5
25 changed files with 302 additions and 208 deletions
|
|
@ -17,7 +17,10 @@
|
|||
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
import requests.cookies
|
||||
import cookielib
|
||||
try:
|
||||
import cookielib
|
||||
except ImportError:
|
||||
import http.cookiejar as cookielib
|
||||
|
||||
|
||||
__all__ = ['WeboobCookieJar']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue