aboutsummaryrefslogtreecommitdiff
path: root/wqflask/utility/tools.py
diff options
context:
space:
mode:
authorPjotr Prins2018-03-20 09:50:34 +0000
committerPjotr Prins2018-03-26 09:29:29 +0000
commite2339a0a491f1853b8411d499be1e08bf62a2da8 (patch)
tree9d35d11d97b041c0a077ebbfd1377d2b52dd2218 /wqflask/utility/tools.py
parent2b75b5d56c99d58e205aed59e721bf578489e802 (diff)
downloadgenenetwork2-e2339a0a491f1853b8411d499be1e08bf62a2da8.tar.gz
Fix
Diffstat (limited to 'wqflask/utility/tools.py')
-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')