From 6c5b7e5885fc314240843773b2b7620f8e1468d3 Mon Sep 17 00:00:00 2001 From: xantares Date: Tue, 17 Feb 2015 20:08:04 +0100 Subject: [PATCH] do not test 'eta' in status --- youtube_dl/downloader/f4m.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/youtube_dl/downloader/f4m.py b/youtube_dl/downloader/f4m.py index 45038186a..12108d0f2 100644 --- a/youtube_dl/downloader/f4m.py +++ b/youtube_dl/downloader/f4m.py @@ -341,8 +341,7 @@ class F4mFD(FileDownloader): toplevel_status['total_bytes'] = total_bytes if 'speed' in status: toplevel_status['speed'] = status['speed'] - if 'eta' in status: - toplevel_status['eta'] = eta + toplevel_status['eta'] = eta self._hook_progress(toplevel_status) http_dl.add_progress_hook(frag_progress_hook)