Properly inherit from lib.imgstream in mangafox.
authorFredrik Tolf <fredrik@dolda2000.com>
Wed, 29 Feb 2012 07:57:09 +0000 (08:57 +0100)
committerFredrik Tolf <fredrik@dolda2000.com>
Wed, 29 Feb 2012 07:57:09 +0000 (08:57 +0100)
manga/mangafox.py

index 302edc5..0ebca60 100644 (file)
@@ -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"]