oob.html: Removed line breaks around the verifier code
authorvijeth-aradhya <vijthaaa@gmail.com>
Fri, 20 Jan 2017 06:26:01 +0000 (11:56 +0530)
committerBoris Bobrov <breton@cynicmansion.ru>
Sun, 29 Jan 2017 14:32:46 +0000 (17:32 +0300)
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

mediagoblin/templates/mediagoblin/api/oob.html

index 97bdd9cab2779977088c60315bb7d6d830487f46..e4d3a132019eca1be461dd95df26ebd2c14600b7 100644 (file)
@@ -27,7 +27,5 @@
 
 <h4>{% trans %}Copy and paste this <strong>verifier code</strong> into your client:{% endtrans %}</h4>
 
-<p class="verifier">
-   {{ oauth_request.verifier }}
-</p>
+<p class="verifier">{{ oauth_request.verifier }}</p>
 {% endblock %}