aboutsummaryrefslogtreecommitdiff
path: root/google/auth/_cloud_sdk.py
diff options
context:
space:
mode:
Diffstat (limited to 'google/auth/_cloud_sdk.py')
-rw-r--r--google/auth/_cloud_sdk.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/google/auth/_cloud_sdk.py b/google/auth/_cloud_sdk.py
index 1f13ad4..40e6aec 100644
--- a/google/auth/_cloud_sdk.py
+++ b/google/auth/_cloud_sdk.py
@@ -18,6 +18,8 @@ import json
import os
import subprocess
+import six
+
from google.auth import environment_vars
from google.auth import exceptions
@@ -154,4 +156,4 @@ def get_auth_access_token(account=None):
new_exc = exceptions.UserAccessTokenError(
"Failed to obtain access token", caught_exc
)
- raise new_exc from caught_exc
+ six.raise_from(new_exc, caught_exc)