Skip to content

Commit 1bafede

Browse files
authored
Fix additional type with OAuth exception (#517)
1 parent ea90d47 commit 1bafede

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

boxsdk/auth/oauth2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ def _execute_token_request(self, data, access_token, expect_refresh_token=True):
344344
access_token=access_token,
345345
)
346346
except BoxAPIException as box_api_exception:
347-
six.raise_from(self._oauth_exception(box_api_excpetion.network_response, url), box_api_exception)
347+
six.raise_from(self._oauth_exception(box_api_exception.network_response, url), box_api_exception)
348348
if not network_response.ok:
349349
raise self._oauth_exception(network_response, url)
350350
try:

0 commit comments

Comments
 (0)