From c3b37fd5e9410548d42a96af9169834f47fce1bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Mon, 1 Apr 2013 10:03:12 +0200 Subject: [PATCH] Fixed problem with a choices import --- greenmine/scrum/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/greenmine/scrum/models.py b/greenmine/scrum/models.py index c1c6ba0a..71cd272c 100644 --- a/greenmine/scrum/models.py +++ b/greenmine/scrum/models.py @@ -13,7 +13,8 @@ from greenmine.base.utils.slug import slugify_uniquely, ref_uniquely from greenmine.base.utils import iter_points from greenmine.scrum.choices import (ISSUESTATUSES, TASKSTATUSES, USSTATUSES, POINTS_CHOICES, SEVERITY_CHOICES, - ISSUETYPES, TASK_CHANGE_CHOICES) + ISSUETYPES, TASK_CHANGE_CHOICES, + PRIORITY_CHOICES) class Severity(models.Model):