Skip to content

Commit

Permalink
Merge pull request #109 from lxneng/fix_gitlab_request_header
Browse files Browse the repository at this point in the history
fix gitlab request headers
  • Loading branch information
willingc authored Aug 26, 2017
2 parents d3a05aa + e7d61af commit 1fb059f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oauthenticator/gitlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
def _api_headers(access_token):
return {"Accept": "application/json",
"User-Agent": "JupyterHub",
"Authorization": "token {}".format(access_token)
"Authorization": "Bearer {}".format(access_token)
}


Expand Down

0 comments on commit 1fb059f

Please sign in to comment.