From 7501118fcb0d985171e20c85f94dcd1800636f80 Mon Sep 17 00:00:00 2001 From: MrS0m30n3 Date: Sun, 10 Dec 2017 15:01:45 +0200 Subject: [PATCH] Decrement update timeout to 10 seconds --- youtube_dl_gui/updatemanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl_gui/updatemanager.py b/youtube_dl_gui/updatemanager.py index 927ed37..d0c5a8a 100644 --- a/youtube_dl_gui/updatemanager.py +++ b/youtube_dl_gui/updatemanager.py @@ -46,7 +46,7 @@ class UpdateThread(Thread): """ LATEST_YOUTUBE_DL = 'https://yt-dl.org/latest/' - DOWNLOAD_TIMEOUT = 20 + DOWNLOAD_TIMEOUT = 10 def __init__(self, download_path, quiet=False): super(UpdateThread, self).__init__()