aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElrond <elrond+mediagoblin.org@samba-tng.org>2011-11-27 23:23:20 +0100
committerElrond <elrond+mediagoblin.org@samba-tng.org>2011-11-27 23:23:20 +0100
commit088c59545f0341cd43603d0924247cb3e679f8e9 (patch)
treed101e756bcf62ac18bd13e20dd99d3377a5a36b4
parent19e2668b77427a1157984480231023661792fca8 (diff)
parent9382221fe2d3e69b7900cfb7461abfdb443b4d10 (diff)
downloadmediagoblin-088c59545f0341cd43603d0924247cb3e679f8e9.tar.lz
mediagoblin-088c59545f0341cd43603d0924247cb3e679f8e9.tar.xz
mediagoblin-088c59545f0341cd43603d0924247cb3e679f8e9.zip
Merge remote branch 'remotes/manolinux/683_text_separate_tags_by_commas_and_spaces'
* remotes/manolinux/683_text_separate_tags_by_commas_and_spaces: Fix the text "Seperate tags by commas and spaces" since spaces are not used to seperate anymore.
-rw-r--r--mediagoblin/edit/forms.py2
-rw-r--r--mediagoblin/submit/forms.py2
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."))