mirror of
https://github.com/l1ving/youtube-dl
synced 2020-11-18 19:53:54 -08:00
Allow comments in batch file
This commit is contained in:
parent
38b90958e8
commit
774e662c87
@ -2212,7 +2212,7 @@ if __name__ == '__main__':
|
|||||||
batchfd = open(opts.batchfile, 'r')
|
batchfd = open(opts.batchfile, 'r')
|
||||||
batchurls = batchfd.readlines()
|
batchurls = batchfd.readlines()
|
||||||
batchurls = [x.strip() for x in batchurls]
|
batchurls = [x.strip() for x in batchurls]
|
||||||
batchurls = [x for x in batchurls if len(x) > 0]
|
batchurls = [x for x in batchurls if len(x) > 0 and not re.search(r'^[#/;]', x)]
|
||||||
except IOError:
|
except IOError:
|
||||||
sys.exit(u'ERROR: batch file could not be read')
|
sys.exit(u'ERROR: batch file could not be read')
|
||||||
all_urls = batchurls + args
|
all_urls = batchurls + args
|
||||||
|
Loading…
x
Reference in New Issue
Block a user