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 | 8de68c7d026348e85d5a5db859cb140117392c5e (patch) | |
tree | 22daa785cfca6275d21ede54b5873f8a84ee384b /archaeological_operations/forms.py | |
parent | a94f64d037f4b060a3fb25f0d601f48707cf66ba (diff) | |
download | Ishtar-8de68c7d026348e85d5a5db859cb140117392c5e.tar.bz2 Ishtar-8de68c7d026348e85d5a5db859cb140117392c5e.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")) |