From a7798efd1a22f6393f636c368b53d1132c4a9713 Mon Sep 17 00:00:00 2001 From: Jeff Johnson Date: Mon, 9 Dec 2013 22:58:39 -0500 Subject: [PATCH] fix choice for accepted declined was defined twice by instead of accepted and declined --- basic/invitations/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basic/invitations/models.py b/basic/invitations/models.py index f51b705..3e0ac9b 100644 --- a/basic/invitations/models.py +++ b/basic/invitations/models.py @@ -13,7 +13,7 @@ INVITATION_STATUS_DECLINED = 2 INVITATION_STATUS_CHOICES = ( (INVITATION_STATUS_SENT, 'Sent'), - (INVITATION_STATUS_DECLINED, 'Accepted'), + (INVITATION_STATUS_ACCEPTED, 'Accepted'), (INVITATION_STATUS_DECLINED, 'Declined'), )