diff options
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 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 |