diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-08-15 15:17:02 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-08-15 15:17:02 -0500 |
commit | cd612ee68902fed1bad981f0c72b338d03fa2aab (patch) | |
tree | eaa39b58ca1191203db555087d172080798e8814 | |
parent | 20d4995d810ce7c7dc0d9453508507cbaa6fdce6 (diff) | |
download | mediagoblin-cd612ee68902fed1bad981f0c72b338d03fa2aab.tar.lz mediagoblin-cd612ee68902fed1bad981f0c72b338d03fa2aab.tar.xz mediagoblin-cd612ee68902fed1bad981f0c72b338d03fa2aab.zip |
Removing the whitespace betwetween action= and its value
-rw-r--r-- | mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/persona.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/persona.html b/mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/persona.html index c953f393..ec0e1875 100644 --- a/mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/persona.html +++ b/mediagoblin/plugins/persona/templates/mediagoblin/plugins/persona/persona.html @@ -18,11 +18,11 @@ {% block persona %} <form id="_persona_login" action= - {% if edit_persona is defined %} + {%- if edit_persona is defined -%} "{{ request.urlgen('mediagoblin.plugins.persona.add') }}" - {% else %} + {%- else -%} "{{ request.urlgen('mediagoblin.plugins.persona.login') }}" - {% endif %} + {%- endif %} method="POST"> {{ csrf_token }} <input type="hidden" name="assertion" type="text" id="_assertion"/> |