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
commit9d00d653ef214b781f4de4e78ff80b56ebbd49be (patch)
tree28296c69c7be4f5b3577301d82ad8e57f2fd874d /archaeological_operations/forms.py
parent287fe030705718a1c72eef790910c8136469c356 (diff)
downloadIshtar-9d00d653ef214b781f4de4e78ff80b56ebbd49be.tar.bz2
Ishtar-9d00d653ef214b781f4de4e78ff80b56ebbd49be.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