diff options
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 |
commit | 9d00d653ef214b781f4de4e78ff80b56ebbd49be (patch) | |
tree | 28296c69c7be4f5b3577301d82ad8e57f2fd874d /archaeological_operations/forms.py | |
parent | 287fe030705718a1c72eef790910c8136469c356 (diff) | |
download | Ishtar-9d00d653ef214b781f4de4e78ff80b56ebbd49be.tar.bz2 Ishtar-9d00d653ef214b781f4de4e78ff80b56ebbd49be.zip |
Minor label fix
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 |