aboutsummaryrefslogtreecommitdiff
path: root/uploader/oauth2
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-09-25 18:52:31 -0500
committerFrederick Muriuki Muriithi2024-09-25 18:52:31 -0500
commit64d78239ab4839a331c4aaec4c0d7e8d1d179e53 (patch)
tree13d74a701972d7481515e6c549d86ebfe575c3ab /uploader/oauth2
parent0c8642d08f88d2dcf8e82a7b58c9922e01c20102 (diff)
downloadgn-uploader-64d78239ab4839a331c4aaec4c0d7e8d1d179e53.tar.gz
Fix typos.
Diffstat (limited to 'uploader/oauth2')
-rw-r--r--uploader/oauth2/client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/uploader/oauth2/client.py b/uploader/oauth2/client.py
index 70a32ff..e7128de 100644
--- a/uploader/oauth2/client.py
+++ b/uploader/oauth2/client.py
@@ -191,7 +191,7 @@ def oauth2_get(url, **kwargs) -> Either:
return Right(resp.json())
return Left(resp)
except Exception as exc:#pylint: disable=[broad-except]
- app.logger.error("Error retriving data from auth server: (GET %s)",
+ app.logger.error("Error retrieving data from auth server: (GET %s)",
_uri,
exc_info=True)
return Left(exc)
@@ -223,7 +223,7 @@ def oauth2_post(url, data=None, json=None, **kwargs):#pylint: disable=[redefined
return Right(resp.json())
return Left(resp)
except Exception as exc:#pylint: disable=[broad-except]
- app.logger.error("Error retriving data from auth server: (POST %s)",
+ app.logger.error("Error retrieving data from auth server: (POST %s)",
_uri,
exc_info=True)
return Left(exc)