From: vijeth-aradhya Date: Fri, 20 Jan 2017 06:26:01 +0000 (+0530) Subject: oob.html: Removed line breaks around the verifier code X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=d26ea3f3bcb4543f6e3eefb507d278fc4d068b4e;p=mediagoblin.git oob.html: Removed line breaks around the verifier code There was an extra space that was displayed after the verfication code which caused verification to fail when just copied. Hence, any line breaks or spaces has been removed Fixes #5476 --- diff --git a/mediagoblin/templates/mediagoblin/api/oob.html b/mediagoblin/templates/mediagoblin/api/oob.html index 97bdd9ca..e4d3a132 100644 --- a/mediagoblin/templates/mediagoblin/api/oob.html +++ b/mediagoblin/templates/mediagoblin/api/oob.html @@ -27,7 +27,5 @@

{% trans %}Copy and paste this verifier code into your client:{% endtrans %}

-

- {{ oauth_request.verifier }} -

+

{{ oauth_request.verifier }}

{% endblock %}