summaryrefslogtreecommitdiff
path: root/postgresqleu/paypal/util.py
diff options
context:
space:
mode:
authorMagnus Hagander2019-04-06 09:29:52 +0000
committerMagnus Hagander2019-04-06 09:29:52 +0000
commit53ba4d82ef401c47553a55ed941af2f0c4273bc9 (patch)
tree0a548e68344c1396480c7a8b8d7da144db27bf41 /postgresqleu/paypal/util.py
parent00fbded673057fe52776f7285b8f18fdcece96b4 (diff)
Also properly match the recurring unknown payments
Diffstat (limited to 'postgresqleu/paypal/util.py')
-rw-r--r--postgresqleu/paypal/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/postgresqleu/paypal/util.py b/postgresqleu/paypal/util.py
index 02321c52..67a6a217 100644
--- a/postgresqleu/paypal/util.py
+++ b/postgresqleu/paypal/util.py
@@ -125,7 +125,7 @@ class PaypalAPI(object):
else:
r['SUBJECT'] = 'Paypal payment with empty note'
elif code == 'T0002':
- r['SUBJECT'] = 'Paypal recurring payment, unknown source'
+ r['SUBJECT'] = 'Recurring paypal payment without note'
elif code == 'T1107':
if t['transaction_info'].get('transaction_subject', ''):
r['SUBJECT'] = 'Refund of Paypal payment: %s' % t['transaction_info']['transaction_subject']