Fix the text "Seperate tags by commas and spaces" since spaces are not used to sepera...
authorManuel Urbano Santos <mu@member.fsf.org>
Sun, 27 Nov 2011 13:31:20 +0000 (14:31 +0100)
committerManuel Urbano Santos <mu@member.fsf.org>
Sun, 27 Nov 2011 13:31:20 +0000 (14:31 +0100)
mediagoblin/edit/forms.py
mediagoblin/submit/forms.py

index 93934be7aaabb7cd48407211cf934091a600df30..dd339e08842bd51d6144be4afd42a15ff74aaa93 100644 (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"))],
index 48a21f02cab7a1f82d71f6cceb4630422339476c..ad4207717054c34a3ec30c6ccd1f91bfc51f3378 100644 (file)
@@ -32,4 +32,4 @@ class SubmitStartForm(wtforms.Form):
         _('Tags'),
         [tag_length_validator],
         description=_(
-          "Seperate tags by commas or spaces."))
+          "Seperate tags by commas."))