mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 15:33:16 +00:00
Ignore leading spaces (and trailing also) in all URL from url list or command line
This commit is contained in:
parent
ceba827e9a
commit
d891ff9fd9
|
@ -4563,6 +4563,7 @@ def _real_main():
|
|||
except IOError:
|
||||
sys.exit(u'ERROR: batch file could not be read')
|
||||
all_urls = batchurls + args
|
||||
all_urls = map(lambda url: url.strip(), all_urls)
|
||||
|
||||
# General configuration
|
||||
cookie_processor = urllib2.HTTPCookieProcessor(jar)
|
||||
|
|
Loading…
Reference in a new issue