From 743725dd2dce9ac22a8062a34b1bf62c894b8482 Mon Sep 17 00:00:00 2001 From: Hexiro <42787085+Hexiro@users.noreply.github.com> Date: Sun, 13 Jun 2021 14:25:16 -0400 Subject: [PATCH] properly pass `http_timeout` --- steam/steamid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam/steamid.py b/steam/steamid.py index 319d877..3d93ab6 100644 --- a/steam/steamid.py +++ b/steam/steamid.py @@ -597,7 +597,7 @@ def from_url(url, http_timeout=30): """ - steam64 = steam64_from_url(url) + steam64 = steam64_from_url(url, http_timeout) if steam64: return SteamID(steam64)