From efea8b712ebdee6a7424076878efe142539672d9 Mon Sep 17 00:00:00 2001 From: MrS0m30n3 Date: Tue, 14 Jul 2015 00:10:18 +0300 Subject: [PATCH] downloaders.py: Update extractor --- youtube_dl_gui/downloaders.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/youtube_dl_gui/downloaders.py b/youtube_dl_gui/downloaders.py index e7a4219..c5508d5 100644 --- a/youtube_dl_gui/downloaders.py +++ b/youtube_dl_gui/downloaders.py @@ -399,6 +399,8 @@ def extract_data(stdout): if stdout[1] == '100%': data_dictionary['speed'] = '' data_dictionary['eta'] = '' + data_dictionary['percent'] = '100%' + data_dictionary['filesize'] = stdout[3] else: data_dictionary['percent'] = stdout[1] data_dictionary['filesize'] = stdout[3]