X-Git-Url: http://git.dolda2000.com/gitweb/?a=blobdiff_plain;f=manga%2Flib.py;h=da64e0c1a0e4ee56d7b632d6d2170e0c59ae5dce;hb=64eb9fa5068bff909c0702614ef1fb1fcdec1ea8;hp=662ecc37ce87c2bebd475487847532358ab578af;hpb=531e4473ccfc214cb30582905b7dea23d011d501;p=automanga.git diff --git a/manga/lib.py b/manga/lib.py index 662ecc3..da64e0c 100644 --- a/manga/lib.py +++ b/manga/lib.py @@ -161,7 +161,6 @@ class stdimgstream(imgstream): def __init__(self, url): import urllib.request req = urllib.request.Request(url, headers={"User-Agent": "automanga/1"}) - print(req) self.bk = urllib.request.urlopen(req) ok = False try: @@ -215,7 +214,14 @@ class cursor(object): raise StopIteration() def __iter__(self): - return self + def iterator(): + yield self.cur + while True: + try: + yield self.next() + except StopIteration: + break + return iterator() loaded = {} def findlib(name):