get card history as far as we can

This commit is contained in:
Romain Bignon 2013-01-16 16:19:30 +01:00
commit efceda7153

View file

@ -128,7 +128,7 @@ class BPBrowser(BaseBrowser):
""" """
ops = self.page.get_history(deferred=True) ops = self.page.get_history(deferred=True)
while len(ops) > 0: while 1:
for tr in ops: for tr in ops:
yield tr yield tr