summaryrefslogtreecommitdiff
path: root/manual tests
diff options
context:
space:
mode:
Diffstat (limited to 'manual tests')
-rwxr-xr-xmanual tests/4 standalone binaries/build_windows_package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/manual tests/4 standalone binaries/build_windows_package.py b/manual tests/4 standalone binaries/build_windows_package.py
index b30ec4dd6..0932eac09 100755
--- a/manual tests/4 standalone binaries/build_windows_package.py
+++ b/manual tests/4 standalone binaries/build_windows_package.py
@@ -11,7 +11,7 @@ shutil.rmtree('build', ignore_errors=True)
os.mkdir('build')
if not os.path.exists(sdl_filename):
- response = urllib.request.urlopen(sdl_url)
+ response = urllib.request.urlopen(sdl_url, timeout=600.0)
data = response.read()
open(sdl_filename, 'wb').write(data)