Fix typo in payment source model
This commit is contained in:
parent
b9b605f407
commit
225f20c91b
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ class Payment(models.Model):
|
||||||
source = models.CharField(max_length=256,
|
source = models.CharField(max_length=256,
|
||||||
choices = (
|
choices = (
|
||||||
('wire', 'Wire Transfer'),
|
('wire', 'Wire Transfer'),
|
||||||
('strip', 'Stripe'),
|
('stripe', 'Stripe'),
|
||||||
('voucher', 'Voucher'),
|
('voucher', 'Voucher'),
|
||||||
('referral', 'Referral'),
|
('referral', 'Referral'),
|
||||||
('unknown', 'Unknown')
|
('unknown', 'Unknown')
|
||||||
|
|
Loading…
Reference in a new issue