summaryrefslogtreecommitdiff
path: root/archaeological_operations/forms.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@proxience.com>2015-01-25 12:54:10 +0100
committerÉtienne Loks <etienne.loks@proxience.com>2015-01-25 12:54:10 +0100
commitfd43bf6ac13673537ca1fbd50ee037ecb022bb6b (patch)
tree28296c69c7be4f5b3577301d82ad8e57f2fd874d /archaeological_operations/forms.py
parent81366a3270cb2138d84b64e92a433f5b462b12d5 (diff)
downloadIshtar-fd43bf6ac13673537ca1fbd50ee037ecb022bb6b.tar.bz2
Ishtar-fd43bf6ac13673537ca1fbd50ee037ecb022bb6b.zip
Minor label fix
Diffstat (limited to 'archaeological_operations/forms.py')
-rw-r--r--archaeological_operations/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py
index aa5f789a2..4aa8e44b4 100644
--- a/archaeological_operations/forms.py
+++ b/archaeological_operations/forms.py
@@ -703,7 +703,7 @@ class OperationSourceForm(SourceForm):
operation__pk=operation_id
).aggregate(Max('index'))["index__max"]
operation = models.Operation.objects.get(pk=operation_id)
- raise forms.ValidationError(_(u"Index already exist for "
+ raise forms.ValidationError(_(u"Index already exists for "
"operation: %(operation)s - use a value bigger than %(last_val)d") % {
"operation":unicode(operation), 'last_val':max_val})
return cleaned_data