commit: 817e8f523fe6d0d0aeb0b100c4cd10a13546793f
parent 8cc4434116456d71afeeb519cbaa6919d7dc7b89
Author: Nevar Angelo <psi.neamf@gmail.com>
Date: Sat, 6 Nov 2010 22:21:45 +0200
Allow comments in batch file.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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