summaryrefslogtreecommitdiff
path: root/postgresqleu/stripepayment
diff options
context:
space:
mode:
authorMagnus Hagander2020-01-02 16:31:32 +0000
committerMagnus Hagander2020-01-02 16:31:32 +0000
commit3610fc063c3d75d5b9de3496e1f937717a2acd55 (patch)
tree1ee4c5f4f826171d49a3c693a112bfbf53880fc7 /postgresqleu/stripepayment
parent7c1e327a0a733993079de70cbdd3003280513e59 (diff)
Fix spelling error in method name
Diffstat (limited to 'postgresqleu/stripepayment')
-rw-r--r--postgresqleu/stripepayment/management/commands/stripe_nightly.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/postgresqleu/stripepayment/management/commands/stripe_nightly.py b/postgresqleu/stripepayment/management/commands/stripe_nightly.py
index c4efe1dc..a3d82419 100644
--- a/postgresqleu/stripepayment/management/commands/stripe_nightly.py
+++ b/postgresqleu/stripepayment/management/commands/stripe_nightly.py
@@ -78,10 +78,10 @@ Better go check manually!
completedat__isnull=False,
invoicerefund__issued__lt=datetime.now() - timedelta(hours=6)):
- send_simle_mail(settings.INVOICE_SENDER_EMAIL,
- pm.config('notification_receiver'),
- 'Stripe stalled refund!',
- """Stripe refund {0} for {1} has been stalled for more than 6 hours!
+ send_simple_mail(settings.INVOICE_SENDER_EMAIL,
+ pm.config('notification_receiver'),
+ 'Stripe stalled refund!',
+ """Stripe refund {0} for {1} has been stalled for more than 6 hours!
This is probably not normal and should be checked!
""".format(r.id, method.internaldescription))