diff options
author | Valérie-Emma Leroux <valerie-emma.leroux@proxience.com> | 2015-02-10 16:52:16 +0100 |
---|---|---|
committer | Valérie-Emma Leroux <valerie-emma.leroux@proxience.com> | 2015-02-10 16:52:16 +0100 |
commit | 8d1c03cd9250778e3d2d9d1e6ae5fc220a0f9daa (patch) | |
tree | 3898661716323c4d48d6c1dcd7dfc6b9ec9cbd2e /archaeological_operations/forms.py | |
parent | 25b13e9b6f9a45795da6546cdc0d2e9cf747f61e (diff) | |
download | Ishtar-8d1c03cd9250778e3d2d9d1e6ae5fc220a0f9daa.tar.bz2 Ishtar-8d1c03cd9250778e3d2d9d1e6ae5fc220a0f9daa.zip |
Fix SRA_AGENT on archaeological_files/forms.py (create when not available)
Diffstat (limited to 'archaeological_operations/forms.py')
-rw-r--r-- | archaeological_operations/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index 0e7e0ec11..1a09b66b4 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -189,7 +189,7 @@ ParcelFormSet = formset_factory(ParcelForm, can_delete=True, formset=ParcelFormSet) ParcelFormSet.form_label = _(u"Parcels") -SRA_AGENT, created =PersonType.objects.get_or_create(txt_idx='sra_agent') +SRA_AGENT, created = PersonType.objects.get_or_create(txt_idx='sra_agent') HEAD_SCIENTIST, created = PersonType.objects.get_or_create( txt_idx='head_scientist') |