summaryrefslogtreecommitdiffstats
path: root/forum/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'forum/forms.py')
-rwxr-xr-xforum/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/forum/forms.py b/forum/forms.py
index e0452d82..e9781dc9 100755
--- a/forum/forms.py
+++ b/forum/forms.py
@@ -77,7 +77,7 @@ class TagNamesField(forms.CharField):
#singular form is odd in english, but required for pluralization
#in other languages
msg = ungettext('each tag must be shorter than %(max_chars)d character',#odd but added for completeness
- 'each tag must be shorter than %(max_shars)d characters',
+ 'each tag must be shorter than %(max_chars)d characters',
tag_length) % {'max_chars':tag_length}
raise forms.ValidationError(msg)