From 4fc20c7240491a6033a0a9a06acedfa32c1c12ea Mon Sep 17 00:00:00 2001 From: rick Date: Fri, 14 May 2010 19:22:47 +0000 Subject: [PATCH] removed a redundant 'one' in the help text for the tags git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@280 0cfe37f9-358a-4d5e-be75-b63607b5c754 --- forum/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forum/forms.py b/forum/forms.py index e57e8bb..509c125 100644 --- a/forum/forms.py +++ b/forum/forms.py @@ -50,7 +50,7 @@ class TagNamesField(forms.CharField): self.max_length = 255 self.label = _('tags') #self.help_text = _('please use space to separate tags (this enables autocomplete feature)') - self.help_text = _('Tags are short keywords, with no spaces within. At least one %(min)s and up to %(max)s tags can be used.') % { + self.help_text = _('Tags are short keywords, with no spaces within. At least %(min)s and up to %(max)s tags can be used.') % { 'min': settings.FORM_MIN_NUMBER_OF_TAGS, 'max': settings.FORM_MAX_NUMBER_OF_TAGS } self.initial = '' -- 2.39.5