From 3bba3a7b136276653da1a0782168a6464309f539 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Wed, 29 Feb 2012 08:57:09 +0100 Subject: [PATCH] Properly inherit from lib.imgstream in mangafox. --- manga/mangafox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"] -- 2.11.0