From 774e662c87569471a56c90c9bddfb909fa3a0f59 Mon Sep 17 00:00:00 2001 From: Nevar Angelo Date: Fri, 5 Nov 2010 14:06:21 +0200 Subject: [PATCH] Allow comments in batch file --- youtube-dl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube-dl b/youtube-dl index b099ffd15..24cc454a8 100644 --- a/youtube-dl +++ b/youtube-dl @@ -2212,7 +2212,7 @@ if __name__ == '__main__': batchfd = open(opts.batchfile, 'r') batchurls = batchfd.readlines() 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: sys.exit(u'ERROR: batch file could not be read') all_urls = batchurls + args