From: Fredrik Tolf Date: Wed, 29 Feb 2012 07:57:09 +0000 (+0100) Subject: Properly inherit from lib.imgstream in mangafox. X-Git-Url: http://dolda2000.com/gitweb/?p=automanga.git;a=commitdiff_plain;h=3bba3a7b136276653da1a0782168a6464309f539 Properly inherit from lib.imgstream in mangafox. --- diff --git a/manga/mangafox.py b/manga/mangafox.py index 302edc5..0ebca60 100644 --- a/manga/mangafox.py +++ b/manga/mangafox.py @@ -3,7 +3,7 @@ import BeautifulSoup import lib, htcache soup = BeautifulSoup.BeautifulSoup -class imgstream(object): +class imgstream(lib.imgstream): def __init__(self, url): self.bk = urllib.urlopen(url) self.ctype = self.bk.info()["Content-Type"]