From 32c97d688776eb55a038a8d27aa04b8e42404402 Mon Sep 17 00:00:00 2001 From: Ivlev Denis Date: Mon, 26 Feb 2018 15:08:55 +0300 Subject: [PATCH] LIL-271. Fix AuthorBalance model --- apps/payment/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/payment/models.py b/apps/payment/models.py index 5fe7653d..c6f54762 100644 --- a/apps/payment/models.py +++ b/apps/payment/models.py @@ -23,7 +23,7 @@ class AuthorBalance(models.Model): ACCEPTED = 1 DECLINED = 2 STATUS_CHOICES = ( - (PENDINNG, 'Pending'), + (PENDING, 'Pending'), (ACCEPTED, 'Accepted'), (DECLINED, 'Declined'), )