diff options
author | Jef van Schendel <mail@jefvanschendel.nl> | 2011-12-30 19:45:00 +0100 |
---|---|---|
committer | Jef van Schendel <mail@jefvanschendel.nl> | 2011-12-30 19:45:00 +0100 |
commit | 6f559060785270d32a6ca99d2cdb89b5fedfaf9e (patch) | |
tree | f73016da9f764545689f09d4980fed166e514a3a | |
parent | 550d48d04059d94894573d93aed98f4faa63e3fb (diff) | |
download | mediagoblin-6f559060785270d32a6ca99d2cdb89b5fedfaf9e.tar.lz mediagoblin-6f559060785270d32a6ca99d2cdb89b5fedfaf9e.tar.xz mediagoblin-6f559060785270d32a6ca99d2cdb89b5fedfaf9e.zip |
Fix #715: On media submit page, "Separate" is misspelled
-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 dd339e08..f9cc92bf 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.")) + "Separate 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 ad420771..e21b00ee 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.")) + "Separate tags by commas.")) |