Fix typo
authorMagnus Hagander <magnus@hagander.net>
Tue, 27 Dec 2016 15:08:49 +0000 (16:08 +0100)
committerMagnus Hagander <magnus@hagander.net>
Tue, 27 Dec 2016 15:08:49 +0000 (16:08 +0100)
postgresqleu/trustlypayment/util.py

index 404322086cf46c47d8c7e44b73b0512caddbc602..702ac5114e8a2029449fa6b4f7bf11c3c9d1b46e 100644 (file)
@@ -159,5 +159,5 @@ class Trustly(TrustlyWrapper):
                send_simple_mail(settings.INVOICE_SENDER_EMAIL,
                                                 settings.TRUSTLY_NOTIFICATION_RECEIVER,
                                                 "Trustly payment completed",
-                                                "A Trustly payment of {0}{1} with for invoice {2} was completed on the Trustly platform.\n\nInvoice: {3}\nRecipient name: {4}\nRecipient email: {5}\n".format(settings.CURRENCY_ABBREV, trans.amount, invoice.id, invoice.title, invoice.recipient_name, invoice.recipient_email),
+                                                "A Trustly payment of {0}{1} for invoice {2} was completed on the Trustly platform.\n\nInvoice: {3}\nRecipient name: {4}\nRecipient email: {5}\n".format(settings.CURRENCY_ABBREV, trans.amount, invoice.id, invoice.title, invoice.recipient_name, invoice.recipient_email),
                                                 )