Allow comments in batch file.
authorNevar Angelo <psi.neamf@gmail.com>
Sat, 6 Nov 2010 20:21:45 +0000 (22:21 +0200)
committerNevar Angelo <psi.neamf@gmail.com>
Sat, 6 Nov 2010 20:21:45 +0000 (22:21 +0200)
youtube-dl

index b099ffd15b9acba2d19cb7152ff57edf3ba10deb..24cc454a8604d8b8d83fdcf9809b4995890b08fc 100755 (executable)
@@ -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