diff options
Diffstat (limited to 'chimere/models.py')
-rw-r--r-- | chimere/models.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chimere/models.py b/chimere/models.py index daa2d48..f6b1872 100644 --- a/chimere/models.py +++ b/chimere/models.py @@ -283,8 +283,7 @@ class GeographicItem(models.Model): ('A', _(u'Available')), ('M', _(u'Modified')), ('D', _(u'Disabled')), - ('I', _(u'Imported')), - ('E', _(u"Excluded"))) + ('I', _(u'Imported'))) STATUS_DCT = dict(STATUS) status = models.CharField(_(u"Status"), max_length=1, choices=STATUS) import_key = models.CharField(_(u"Import key"), max_length=200, |