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]