Retrieve all transactions from the history. Merchant and regular account support. All transactions add up to balance.

Signed-off-by: Oleg Plakhotniuk <olegus8@gmail.com>

closes #1406
This commit is contained in:
Oleg Plakhotniuk 2014-06-22 22:31:35 +02:00 committed by Laurent Bachelier
commit 9a2f0d55aa
4 changed files with 136 additions and 42 deletions

View file

@ -56,5 +56,5 @@ class PaypalBackend(BaseBackend, ICapBank):
def iter_history(self, account):
with self.browser:
for history in self.browser.get_history(account):
for history in self.browser.get_download_history(account):
yield history