From bb0d34500d449cc4a8e66242e2c1ccb29c97a27c Mon Sep 17 00:00:00 2001 From: Jacek Date: Fri, 9 Jun 2017 11:46:54 +0200 Subject: [PATCH] typo --- aa_stripe/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aa_stripe/models.py b/aa_stripe/models.py index 4eada53..b02ae1e 100644 --- a/aa_stripe/models.py +++ b/aa_stripe/models.py @@ -101,7 +101,7 @@ class StripeSubscriptionPlan(StripeBasicModel): source = JSONField(blank=True, help_text=_("Source of the plan, ie: {\"prescription\": 1}")) amount = models.IntegerField(help_text=_("In cents. More: https://stripe.com/docs/api#create_plan-amount")) currency = models.CharField( - max_length=3, help_text=_("3 letter ISO code, default USD, , https://stripe.com/docs/api#create_plan-currency"), + max_length=3, help_text=_("3 letter ISO code, default USD, https://stripe.com/docs/api#create_plan-currency"), default="USD") name = models.CharField( max_length=255, help_text=_("Name of the plan, to be displayed on invoices and in the web interface."))