From 777abf7e7a772b708e749fa71c04a6f609553fe0 Mon Sep 17 00:00:00 2001 From: Kitof Date: Sat, 14 Feb 2015 12:31:28 +0100 Subject: [PATCH] Fix paypal new activity URL --- modules/paypal/browser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/paypal/browser.py b/modules/paypal/browser.py index cfb5d807..b89c0701 100644 --- a/modules/paypal/browser.py +++ b/modules/paypal/browser.py @@ -197,7 +197,7 @@ class Paypal(Browser): if self.account_type == "pro": self.location('/webapps/business/activity?fromdate=' + s + '&todate=' + e + '&transactiontype=ALL_TRANSACTIONS¤cy=ALL_TRANSACTIONS_CURRENCY&limit=' + LIMIT) else: - self.location('/myaccount/activity/filter?start=' + s + '&end=' + e + '&limit=' + LIMIT) + self.location('/myaccount/activity/filter?typeFilter=all&isNewSearch=true&startDate=' + s + '&endDate=' + e + '&limit=' + LIMIT) return self.page.transaction_left() def download_last_history(self, account):