Skip to content

Commit

Permalink
Merge pull request #9 from Peter-Slump/fix-travis
Browse files Browse the repository at this point in the history
Fix failing Travis jobs
  • Loading branch information
Peter Slump committed Nov 27, 2018
2 parents 326bb1d + 1fcaebf commit 1f859c6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,5 @@ ENV/

.idea

docs/_build
docs/_build
.pytest_cache
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
before_install:
Expand Down
6 changes: 3 additions & 3 deletions src/keycloak/openid_connect.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def token_exchange(self, **kwargs):
identifier configured by a specific Identity Provider.
:param subject_token_type: This parameter is the type of the token
passed with the subject_token parameter. This defaults to
urn\:ietf:params:oauth:token-type:access_token if the subject_token
urn:ietf:params:oauth:token-type:access_token if the subject_token
comes from the realm and is an access token. If it is an external
token, this parameter may or may not have to be specified depending
on the requirements of the subject_issuer.
Expand All @@ -242,8 +242,8 @@ def token_exchange(self, **kwargs):
urn:ietf:params:oauth:token-type:refresh_token in which case you
will be returned both an access token and refresh token within the
response. Other appropriate values are
urn\:ietf:params:oauth:token-type:access_token and
urn\:ietf:params:oauth:token-type:id_token
urn:ietf:params:oauth:token-type:access_token and
urn:ietf:params:oauth:token-type:id_token
:param audience: This parameter specifies the target client you want
the new token minted for.
:param requested_issuer: This parameter specifies that the client wants
Expand Down

0 comments on commit 1f859c6

Please sign in to comment.