Skip to content

Commit

Permalink
Fix auth refresh for clients using JWTAuth (box#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
GabeLambda committed Mar 28, 2017
1 parent 6597e93 commit c514770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boxsdk/auth/jwt_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def _auth_with_jwt(self, sub, sub_type):
data['box_device_id'] = self._box_device_id
if self._box_device_name:
data['box_device_name'] = self._box_device_name
return self.send_token_request(data, access_token=None, expect_refresh_token=False)[0]
return self.send_token_request(data, access_token=None, expect_refresh_token=False)

def authenticate_user(self, user=None):
"""
Expand Down

0 comments on commit c514770

Please sign in to comment.