diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-11-16 23:29:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-16 23:29:37 +0800 |
commit | 315cb86a95d6e5c67fef27a88d96477786072b93 (patch) | |
tree | b9d59a8bd6bf47f59ba30a344dabad8af024ed65 /youtube_dl | |
parent | d76767c90ec8d0edfabfaf51b7ab28182196d9dd (diff) | |
parent | b2fc1c4fb965c08067cf42e5a7aaab45df8c2d5f (diff) |
Merge pull request #11210 from FooBarQuaxx/patch-2
Strip only args urls
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/__init__.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index 643393558..af99cf1c0 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -95,8 +95,7 @@ def _real_main(argv=None): write_string('[debug] Batch file urls: ' + repr(batch_urls) + '\n') except IOError: sys.exit('ERROR: batch file could not be read') - all_urls = batch_urls + args - all_urls = [url.strip() for url in all_urls] + all_urls = batch_urls + [url.strip() for url in args] # batch_urls are already striped in read_batch_urls _enc = preferredencoding() all_urls = [url.decode(_enc, 'ignore') if isinstance(url, bytes) else url for url in all_urls] |