aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPjotr Prins2018-03-20 09:50:34 +0000
committerPjotr Prins2018-03-20 09:51:28 +0000
commitab369995d4a16de5d20123192279e32658f870a0 (patch)
tree34e95f4969ac96dd5efbfc9f9f276c6723c60ec1
parentfd236176d9011887662a0203f9af4a2f206b5af2 (diff)
downloadgenenetwork2-ab369995d4a16de5d20123192279e32658f870a0.tar.gz
Fix
-rw-r--r--wqflask/utility/tools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/utility/tools.py b/wqflask/utility/tools.py
index ed54f77c..4b4cd633 100644
--- a/wqflask/utility/tools.py
+++ b/wqflask/utility/tools.py
@@ -263,7 +263,7 @@ ORCID_CLIENT_ID = get_setting('ORCID_CLIENT_ID')
ORCID_CLIENT_SECRET = get_setting('ORCID_CLIENT_SECRET')
ORCID_AUTH_URL = None
if ORCID_CLIENT_ID != 'UNKNOWN' and ORCID_CLIENT_SECRET:
- ORCID_AUTH_URL = "https://sandbox.orcid.org/oauth/authorize?response_type=code&scope=/authenticate&show_login=true&client_id=" +
+ ORCID_AUTH_URL = "https://sandbox.orcid.org/oauth/authorize?response_type=code&scope=/authenticate&show_login=true&client_id=" + \
ORCID_CLIENT_ID+"&client_secret="+ORCID_CLIENT_SECRET
ORCID_TOKEN_URL = get_setting('ORCID_TOKEN_URL')