diff options
Diffstat (limited to 'postgresqleu/paypal/util.py')
| -rw-r--r-- | postgresqleu/paypal/util.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/postgresqleu/paypal/util.py b/postgresqleu/paypal/util.py index cc9dcfbf..8ba2f098 100644 --- a/postgresqleu/paypal/util.py +++ b/postgresqleu/paypal/util.py @@ -103,6 +103,14 @@ class PaypalAPI(object): yield r continue + if code == 'T0303': + # Bank deposit, doesn't have normal details + r['EMAIL'] = self.pm.config('email') + r['NAME'] = self.pm.config('email') + r['SUBJECT'] = 'Bank deposit to paypal' + yield r + continue + if code == 'T1201': # Chargeback, also doesn't have normal details r['EMAIL'] = self.pm.config('email') |
