diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-12-05 13:18:02 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-12-05 13:18:17 +0100 |
commit | d74f0c0edb125762b0c0a7666c91c662e287548d (patch) | |
tree | 5deed712ea69f229a2f1a7647d81b59afb7805e0 /archaeological_finds/models.py | |
parent | 0310c69279d27b293861c0a9682022e9b3b32015 (diff) | |
download | Ishtar-d74f0c0edb125762b0c0a7666c91c662e287548d.tar.bz2 Ishtar-d74f0c0edb125762b0c0a7666c91c662e287548d.zip |
Typo
Diffstat (limited to 'archaeological_finds/models.py')
-rw-r--r-- | archaeological_finds/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py index 6b1da9506..274e2d76f 100644 --- a/archaeological_finds/models.py +++ b/archaeological_finds/models.py @@ -844,7 +844,7 @@ class Treatment(BaseHistorizedItem, ImageModel, OwnPerms): end_date = models.DateField(_(u"End date"), blank=True, null=True) container = models.ForeignKey(Container, verbose_name=_(u"Container"), blank=True, null=True) - target_is_basket = models.BooleanField(_("Target a basket"), default=False) + target_is_basket = models.BooleanField(_(u"Target a basket"), default=False) history = HistoricalRecords() class Meta: |