From 1da87389c6d24f4c8db3c38ed779a38610bf8063 Mon Sep 17 00:00:00 2001 From: xantares Date: Tue, 17 Feb 2015 20:04:43 +0100 Subject: [PATCH] use global eta --- youtube_dl/downloader/f4m.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/downloader/f4m.py b/youtube_dl/downloader/f4m.py index ddbcc5d1c..84e4a224d 100644 --- a/youtube_dl/downloader/f4m.py +++ b/youtube_dl/downloader/f4m.py @@ -342,7 +342,7 @@ class F4mFD(FileDownloader): if 'speed' in status: toplevel_status['speed'] = status['speed'] if 'eta' in status: - toplevel_status['eta'] = status['eta'] + toplevel_status['eta'] = eta for hook in self._progress_hooks: hook(toplevel_status)