diff options
author | Manuel Urbano Santos <mu@member.fsf.org> | 2011-11-27 14:31:20 +0100 |
---|---|---|
committer | Manuel Urbano Santos <mu@member.fsf.org> | 2011-11-27 14:31:20 +0100 |
commit | 9382221fe2d3e69b7900cfb7461abfdb443b4d10 (patch) | |
tree | 12be40122a755a6c424de8343a1b9194b3fb36e4 | |
parent | 30188321531e1b0d3c78166498702bbd8c7dc2bc (diff) | |
download | mediagoblin-9382221fe2d3e69b7900cfb7461abfdb443b4d10.tar.lz mediagoblin-9382221fe2d3e69b7900cfb7461abfdb443b4d10.tar.xz mediagoblin-9382221fe2d3e69b7900cfb7461abfdb443b4d10.zip |
Fix the text "Seperate tags by commas and spaces" since spaces are not used to seperate anymore.
-rw-r--r-- | mediagoblin/edit/forms.py | 2 | ||||
-rw-r--r-- | mediagoblin/submit/forms.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mediagoblin/edit/forms.py b/mediagoblin/edit/forms.py index 93934be7..dd339e08 100644 --- a/mediagoblin/edit/forms.py +++ b/mediagoblin/edit/forms.py @@ -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"))], diff --git a/mediagoblin/submit/forms.py b/mediagoblin/submit/forms.py index 48a21f02..ad420771 100644 --- a/mediagoblin/submit/forms.py +++ b/mediagoblin/submit/forms.py @@ -32,4 +32,4 @@ class SubmitStartForm(wtforms.Form): _('Tags'), [tag_length_validator], description=_( - "Seperate tags by commas or spaces.")) + "Seperate tags by commas.")) |