Re-equipped manga.lib.cursor with iteration ability.
[automanga.git] / manga / lib.py
index 54bcb77..8cc96cb 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: