diff options
| author | AAGaming <aagaming@riseup.net> | 2024-08-03 13:58:10 -0400 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2024-08-03 14:04:23 -0400 |
| commit | 9570d0b0c21fda8eb85d9fe297681633349b3803 (patch) | |
| tree | d5009692399e49c0199fc6e171f65050facc5ec3 /backend/decky_loader | |
| parent | 8a90605a648f0336090507cf89b66214388ba8cd (diff) | |
| download | decky-loader-9570d0b0c21fda8eb85d9fe297681633349b3803.tar.gz decky-loader-9570d0b0c21fda8eb85d9fe297681633349b3803.zip | |
python moment
Diffstat (limited to 'backend/decky_loader')
| -rw-r--r-- | backend/decky_loader/utilities.py | 2 |
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, |
