about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNevar Angelo <psi.neamf@gmail.com>2010-11-06 22:21:45 +0200
committerNevar Angelo <psi.neamf@gmail.com>2010-11-06 22:21:45 +0200
commit817e8f523fe6d0d0aeb0b100c4cd10a13546793f (patch)
tree338b8e710246338f1844f3c2426036233a31900c
parent8cc4434116456d71afeeb519cbaa6919d7dc7b89 (diff)
downloadyoutube-dl-817e8f523fe6d0d0aeb0b100c4cd10a13546793f.tar.gz
youtube-dl-817e8f523fe6d0d0aeb0b100c4cd10a13546793f.tar.xz
youtube-dl-817e8f523fe6d0d0aeb0b100c4cd10a13546793f.zip
Allow comments in batch file.
-rwxr-xr-xyoutube-dl2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube-dl b/youtube-dl
index b099ffd15..24cc454a8 100755
--- 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