diff options
author | Jef van Schendel <mail@jefvanschendel.nl> | 2012-01-13 23:23:02 +0100 |
---|---|---|
committer | Jef van Schendel <mail@jefvanschendel.nl> | 2012-01-13 23:23:02 +0100 |
commit | fafec727402ef3fa4d806b200f1d86cb91cd6362 (patch) | |
tree | 5ea0271ea5e6bc8714d3f2b2ceb56f6b994d98f8 /mediagoblin/edit | |
parent | 20659de2344ccb8d14f8deaeaf9628d84a966e5a (diff) | |
download | mediagoblin-fafec727402ef3fa4d806b200f1d86cb91cd6362.tar.lz mediagoblin-fafec727402ef3fa4d806b200f1d86cb91cd6362.tar.xz mediagoblin-fafec727402ef3fa4d806b200f1d86cb91cd6362.zip |
Remove unnecessary piece of text in media.html. Fix "Markdown text" indentation so they are the same.
Diffstat (limited to 'mediagoblin/edit')
-rw-r--r-- | mediagoblin/edit/forms.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mediagoblin/edit/forms.py b/mediagoblin/edit/forms.py index 09955874..5c191fba 100644 --- a/mediagoblin/edit/forms.py +++ b/mediagoblin/edit/forms.py @@ -45,10 +45,9 @@ class EditProfileForm(wtforms.Form): bio = wtforms.TextAreaField( _('Bio'), [wtforms.validators.Length(min=0, max=500)], - description=_( - """You can use - <a href="http://daringfireball.net/projects/markdown/basics"> - Markdown</a> for formatting.""")) + description=_("""You can use + <a href="http://daringfireball.net/projects/markdown/basics"> + Markdown</a> for formatting.""")) url = wtforms.TextField( _('Website'), [wtforms.validators.Optional(), |