diff options
author | emma <emma@proxience.com> | 2015-02-10 16:52:16 +0100 |
---|---|---|
committer | emma <emma@proxience.com> | 2015-02-10 16:52:16 +0100 |
commit | 37cd51f803efeb85d76d24513e7851f420252913 (patch) | |
tree | 3898661716323c4d48d6c1dcd7dfc6b9ec9cbd2e /archaeological_operations/forms.py | |
parent | 4cd1f4d5d8614bfa89c2316650007149829dc142 (diff) | |
download | Ishtar-37cd51f803efeb85d76d24513e7851f420252913.tar.bz2 Ishtar-37cd51f803efeb85d76d24513e7851f420252913.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') |