We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 248607c commit de0a6afCopy full SHA for de0a6af
tagging/forms.py
@@ -16,7 +16,7 @@ def clean_name(self):
16
value = self.cleaned_data['name']
17
tag_names = parse_tag_input(value)
18
if len(tag_names) > 1:
19
- raise ValidationError(_('Multiple tags were given.'))
+ raise forms.ValidationError(_('Multiple tags were given.'))
20
elif len(tag_names[0]) > settings.MAX_TAG_LENGTH:
21
raise forms.ValidationError(
22
_('A tag may be no more than %s characters long.') %
0 commit comments