summaryrefslogtreecommitdiff
path: root/backend/decky_loader
diff options
context:
space:
mode:
authorAAGaming <aagaming@riseup.net>2024-08-03 13:58:10 -0400
committerAAGaming <aagaming@riseup.net>2024-08-03 14:04:23 -0400
commit9570d0b0c21fda8eb85d9fe297681633349b3803 (patch)
treed5009692399e49c0199fc6e171f65050facc5ec3 /backend/decky_loader
parent8a90605a648f0336090507cf89b66214388ba8cd (diff)
downloaddecky-loader-9570d0b0c21fda8eb85d9fe297681633349b3803.tar.gz
decky-loader-9570d0b0c21fda8eb85d9fe297681633349b3803.zip
python moment
Diffstat (limited to 'backend/decky_loader')
-rw-r--r--backend/decky_loader/utilities.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/decky_loader/utilities.py b/backend/decky_loader/utilities.py
index c88a2f93..4850cdef 100644
--- a/backend/decky_loader/utilities.py
+++ b/backend/decky_loader/utilities.py
@@ -199,7 +199,7 @@ class Utilities:
async def http_request_legacy(self, method: str, url: str, extra_opts: Any = {}, timeout: int | None = None):
async with ClientSession() as web:
- res = await web.request(method, url, ssl=helpers.get_ssl_context(), timeout=timeout **extra_opts)
+ res = await web.request(method, url, ssl=helpers.get_ssl_context(), timeout=timeout, **extra_opts)
text = await res.text()
return {
"status": res.status,