summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-07-30 23:11:44 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-07-30 23:11:44 +0200
commit05afc96b73cc4975aef6ace912566a2b36141cc4 (patch)
tree6e1cb66354699c6f0ea516ea487d005b1e06df4e
parentfa800269159990b53de5013790c2d83f8e05e37b (diff)
downloadyoutube-dl-05afc96b73cc4975aef6ace912566a2b36141cc4.tar.gz
youtube-dl-05afc96b73cc4975aef6ace912566a2b36141cc4.tar.xz
youtube-dl-05afc96b73cc4975aef6ace912566a2b36141cc4.zip
Print urls from the batch file with --verbose (related #1155)
-rw-r--r--youtube_dl/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index eb23c53a5..bf040aacd 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -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