diff --git a/adsdocmatch/matchable_status.py b/adsdocmatch/matchable_status.py index a378458..e233b16 100644 --- a/adsdocmatch/matchable_status.py +++ b/adsdocmatch/matchable_status.py @@ -37,7 +37,7 @@ def matchable_status(bibstem): token = config.get("DOCMATCHPIPELINE_API_TOKEN", None) jdb_url = config.get("DOCMATCHPIPELINE_API_JOURNALS_SERVICE_URL", None) if token and jdb_url: - header = {"Authorization": "Bearer:%s" % token} + header = {"Authorization": "Bearer %s" % token} query = "/summary/" + bibstem request_url = jdb_url + query r = requests.get(request_url, headers=header)