Browse Source

Print urls from the batch file with --verbose (related #1155)

Jaime Marquínez Ferrándiz 12 năm trước cách đây
mục cha
commit
05afc96b73
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      youtube_dl/__init__.py

+ 2 - 0
youtube_dl/__init__.py

@@ -398,6 +398,8 @@ def _real_main(argv=None):
             batchurls = batchfd.readlines()
             batchurls = batchfd.readlines()
             batchurls = [x.strip() for x in batchurls]
             batchurls = [x.strip() for x in batchurls]
             batchurls = [x for x in batchurls if len(x) > 0 and not re.search(r'^[#/;]', x)]
             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:
         except IOError:
             sys.exit(u'ERROR: batch file could not be read')
             sys.exit(u'ERROR: batch file could not be read')
     all_urls = batchurls + args
     all_urls = batchurls + args