summaryrefslogtreecommitdiff
path: root/ishtar/ishtar_base/forms_context_records.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar/ishtar_base/forms_context_records.py')
-rw-r--r--ishtar/ishtar_base/forms_context_records.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ishtar/ishtar_base/forms_context_records.py b/ishtar/ishtar_base/forms_context_records.py
index 27b7fc6f2..7024b523a 100644
--- a/ishtar/ishtar_base/forms_context_records.py
+++ b/ishtar/ishtar_base/forms_context_records.py
@@ -136,8 +136,8 @@ class RecordFormSelection(forms.Form):
def clean(self):
cleaned_data = self.cleaned_data
if 'pk' not in cleaned_data or not cleaned_data['pk']:
- raise forms.ValidationError(_(u"You should select a context "
- u"record."))
+ raise forms.ValidationError(_(u"You should at least select one "
+ u"context record."))
return cleaned_data