From bd7346626568b57878298ff7b26f205afc8a9eec Mon Sep 17 00:00:00 2001 From: Johan Andersson Date: Sun, 28 Oct 2018 22:36:09 +0100 Subject: [PATCH] fetcher.http: rename options to config --- lib/svtplay_dl/fetcher/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/svtplay_dl/fetcher/http.py b/lib/svtplay_dl/fetcher/http.py index 3d9fe83..5df4881 100644 --- a/lib/svtplay_dl/fetcher/http.py +++ b/lib/svtplay_dl/fetcher/http.py @@ -30,7 +30,7 @@ class HTTP(VideoRetriever): for i in data.iter_content(8192): bytes_so_far += len(i) file_d.write(i) - if not self.options.get("silent"): + if not self.config.get("silent"): eta.update(bytes_so_far) progressbar(total_size, bytes_so_far, ''.join(["ETA: ", str(eta)]))