Skip to content

Commit

Permalink
Fix BackendApplicationClient.prepare_request_body (#682)
Browse files Browse the repository at this point in the history
Fix BackendApplicationClient.prepare_request_body
  • Loading branch information
JonathanHuot committed Jul 4, 2019
2 parents 19d111d + 6f58d0e commit a44e080
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions oauthlib/oauth2/rfc6749/clients/backend_application.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,6 @@ def prepare_request_body(self, body='', scope=None,
"""
kwargs['client_id'] = self.client_id
kwargs['include_client_id'] = include_client_id
scope = self.scope if scope is None else scope
return prepare_token_request(self.grant_type, body=body,
scope=scope, **kwargs)

0 comments on commit a44e080

Please sign in to comment.