Print urls from the batch file with --verbose (related #1155)
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Tue, 30 Jul 2013 21:11:44 +0000 (23:11 +0200)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Tue, 30 Jul 2013 21:11:44 +0000 (23:11 +0200)
youtube_dl/__init__.py

index eb23c53a570fa84eabd64ec7f83a2fc045a8727c..bf040aacd79fb16a19c4d4e688c1d628faf65a9f 100644 (file)
@@ -398,6 +398,8 @@ def _real_main(argv=None):
             batchurls = batchfd.readlines()
             batchurls = [x.strip() for x in batchurls]
             batchurls = [x for x in batchurls if len(x) > 0 and not re.search(r'^[#/;]', x)]
+            if opts.verbose:
+                sys.stderr.write(u'[debug] Batch file urls: ' + repr(batchurls) + u'\n')
         except IOError:
             sys.exit(u'ERROR: batch file could not be read')
     all_urls = batchurls + args