From: Fredrik Tolf Date: Thu, 31 Dec 2015 01:29:11 +0000 (+0100) Subject: Fixed Batoto search. X-Git-Url: http://dolda2000.com/gitweb/?p=automanga.git;a=commitdiff_plain;h=f96b068dcd48f4821e2263fcd7fb937e839add51 Fixed Batoto search. --- diff --git a/manga/batoto.py b/manga/batoto.py index 51cc3c8..a7a2108 100644 --- a/manga/batoto.py +++ b/manga/batoto.py @@ -307,7 +307,7 @@ class library(lib.library): while True: _pars = dict(pars) _pars["p"] = str(p) - resp = urllib.request.urlopen(self.base + "search?" + urllib.parse.urlencode(_pars).encode("ascii")) + resp = urllib.request.urlopen(self.base + "search?" + urllib.parse.urlencode(_pars)) try: page = soupify(resp.read()) finally: