projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8cc4434
)
Allow comments in batch file.
author
Nevar Angelo
<psi.neamf@gmail.com>
Sat, 6 Nov 2010 20:21:45 +0000
(22:21 +0200)
committer
Nevar Angelo
<psi.neamf@gmail.com>
Sat, 6 Nov 2010 20:21:45 +0000
(22:21 +0200)
youtube-dl
patch
|
blob
|
history
diff --git
a/youtube-dl
b/youtube-dl
index b099ffd15b9acba2d19cb7152ff57edf3ba10deb..24cc454a8604d8b8d83fdcf9809b4995890b08fc 100755
(executable)
--- 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