From 473fdd2100487a52b8d313fd923ecd0406979ca0 Mon Sep 17 00:00:00 2001
From: vijeth-aradhya <vijthaaa@gmail.com>
Date: Fri, 20 Jan 2017 11:56:01 +0530
Subject: [PATCH] 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
---
mediagoblin/templates/mediagoblin/api/oob.html | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/mediagoblin/templates/mediagoblin/api/oob.html b/mediagoblin/templates/mediagoblin/api/oob.html
index 97bdd9c..e4d3a13 100644
a
|
b
|
|
27 | 27 | |
28 | 28 | <h4>{% trans %}Copy and paste this <strong>verifier code</strong> into your client:{% endtrans %}</h4> |
29 | 29 | |
30 | | <p class="verifier"> |
31 | | {{ oauth_request.verifier }} |
32 | | </p> |
| 30 | <p class="verifier">{{ oauth_request.verifier }}</p> |
33 | 31 | {% endblock %} |