Fix case sensitivity of format selector

Bug introduced in f8d4ad9ab0
This commit is contained in:
pukkandan 2021-04-26 10:49:22 +05:30
parent b982cbdd0e
commit 598d185db1
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698
1 changed files with 1 additions and 1 deletions

View File

@ -1666,7 +1666,7 @@ class YoutubeDL(object):
return []
elif selector.type == SINGLE: # atom
format_spec = (selector.selector or 'best').lower()
format_spec = selector.selector or 'best'
# TODO: Add allvideo, allaudio etc by generalizing the code with best/worst selector
if format_spec == 'all':