Fix typo on Stripe plugin configuration alert. (#251)

This commit is contained in:
FlaviaBastos
2016-09-26 10:35:15 -06:00
committed by Raphael Michel
parent e5314e48a4
commit 006ade1414
3 changed files with 3 additions and 3 deletions

View File

@@ -47,7 +47,7 @@ class Stripe(BasePaymentProvider):
def settings_content_render(self, request):
return "<div class='alert alert-info'>%s<br /><code>%s</code></div>" % (
_('Please configure a <a href="https://dashboard.stripe.com/account/webhooks">Stripe Webhook</a> to '
'the following endpoint in order to automatically cancel orders when a charges are refunded externally.'),
'the following endpoint in order to automatically cancel orders when charges are refunded externally.'),
build_absolute_uri(self.event, 'plugins:stripe:webhook')
)