]> git.dolda2000.com Git - automanga.git/commitdiff
Re-equipped manga.lib.cursor with iteration ability.
authorFredrik Tolf <fredrik@dolda2000.com>
Mon, 15 May 2017 02:49:32 +0000 (04:49 +0200)
committerFredrik Tolf <fredrik@dolda2000.com>
Mon, 15 May 2017 02:49:32 +0000 (04:49 +0200)
manga/lib.py

index 54bcb77efcee831379ba09e03a5319638feb4ea4..8cc96cb712d9f398f0c18bda1a839fe74b953c93 100644 (file)
@@ -206,6 +206,9 @@ class cursor(object):
                 return self.cur
         raise StopIteration()
 
+    def __next__(self):
+        return self.next()
+
     def prev(self):
         for n, i in reversed(self.cur.stack):
             if i > 0: