diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-02-10 16:30:20 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-02-10 16:30:20 +0100 |
commit | 999ae8b097a409d3d89b9849f1018a49547b2ae9 (patch) | |
tree | 22daa785cfca6275d21ede54b5873f8a84ee384b /archaeological_operations/forms.py | |
parent | 73c8ff7564324a52fa5de45732c6af2fb66cd6b8 (diff) | |
download | Ishtar-999ae8b097a409d3d89b9849f1018a49547b2ae9.tar.bz2 Ishtar-999ae8b097a409d3d89b9849f1018a49547b2ae9.zip |
Fix OPERATOR on data importer (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 fa5816bf6..0e7e0ec11 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -193,7 +193,7 @@ SRA_AGENT, created =PersonType.objects.get_or_create(txt_idx='sra_agent') HEAD_SCIENTIST, created = PersonType.objects.get_or_create( txt_idx='head_scientist') -OPERATOR, created = OrganizationType.objects.get_or_create(txt_idx='operator') +OPERATOR, created = OrganizationType.objects.get_or_create(txt_idx='operator') class OperationSelect(TableSelect): year = forms.IntegerField(label=_("Year")) |