1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-05 19:40:08 +02:00

Skip blank lines in batch file -- fixes issue #9

This commit is contained in:
Ricardo Garcia 2009-04-25 13:30:50 +02:00
parent a825f0ca83
commit b65740e474

View File

@ -997,7 +997,9 @@ if __name__ == '__main__':
batchurls = []
if opts.batchfile is not None:
try:
batchurls = [line.strip() for line in open(opts.batchfile, 'r')]
batchurls = open(opts.batchfile, 'r').readlines()
batchurls = [x.strip() for x in batchurls]
batchurls = [x for x in batchurls if len(x) > 0]
except IOError:
sys.exit(u'ERROR: batch file could not be read')
all_urls = batchurls + args