Fix the text "Seperate tags by commas and spaces" since spaces are not used to seperate anymore.

This commit is contained in:
Manuel Urbano Santos 2011-11-27 14:31:20 +01:00
parent 3018832153
commit 9382221fe2
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ class EditForm(wtforms.Form):
_('Tags'),
[tag_length_validator],
description=_(
"Seperate tags by commas or spaces."))
"Seperate tags by commas."))
slug = wtforms.TextField(
_('Slug'),
[wtforms.validators.Required(message=_("The slug can't be empty"))],

View File

@ -32,4 +32,4 @@ class SubmitStartForm(wtforms.Form):
_('Tags'),
[tag_length_validator],
description=_(
"Seperate tags by commas or spaces."))
"Seperate tags by commas."))