Fix typo in payment source model

This commit is contained in:
fnux 2020-02-27 12:21:52 +01:00
parent b9b605f407
commit 225f20c91b
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ class Payment(models.Model):
source = models.CharField(max_length=256,
choices = (
('wire', 'Wire Transfer'),
('strip', 'Stripe'),
('stripe', 'Stripe'),
('voucher', 'Voucher'),
('referral', 'Referral'),
('unknown', 'Unknown')