Browse Source

Ignore youtube-dl debug-junk output

doc-issue-template
MrS0m30n3 7 years ago
parent
commit
acbcac7a34
1 changed files with 3 additions and 0 deletions
  1. 3
      youtube_dl_gui/downloaders.py

3
youtube_dl_gui/downloaders.py

@ -460,6 +460,9 @@ def extract_data(stdout):
data_dictionary['filename'] = filename
data_dictionary['extension'] = extension
elif stdout[0][0] != '[' or stdout[0] == '[debug]':
pass # Just ignore this output
else:
data_dictionary['status'] = 'Pre Processing'

Loading…
Cancel
Save