aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gn2/wqflask/oauth2/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn2/wqflask/oauth2/client.py b/gn2/wqflask/oauth2/client.py
index e9f747f4..8feb9c7f 100644
--- a/gn2/wqflask/oauth2/client.py
+++ b/gn2/wqflask/oauth2/client.py
@@ -124,7 +124,7 @@ def no_token_post(uri_path: str, **kwargs) -> Either:
return Right(resp.json())
return Left(resp)
except requests.exceptions.RequestException as exc:
- raise ExternalRequestError(uri, exc) from exc
+ raise ExternalRequestError(uri_path, exc) from exc
def post(uri_path: str, **kwargs) -> Either:
"""