about summary refs log tree commit diff
diff options
context:
space:
mode:
authorcantandwont <52587695+cantandwont@users.noreply.github.com>2019-08-01 06:54:39 +1000
committerSergey M <dstftw@gmail.com>2019-08-01 03:54:39 +0700
commit826dcff99cd0a44ec5fa94f0e0201f5115d097ef (patch)
treec2de7b9c8c670573a5976679521ec43cffe43f97
parent9a37ff82f17383336251afcd80821620dd86ee95 (diff)
downloadyoutube-dl-826dcff99cd0a44ec5fa94f0e0201f5115d097ef.tar.gz
youtube-dl-826dcff99cd0a44ec5fa94f0e0201f5115d097ef.tar.xz
youtube-dl-826dcff99cd0a44ec5fa94f0e0201f5115d097ef.zip
Output batch filename when it could not be read (#21915)
-rw-r--r--youtube_dl/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index 165c975dd..9a659fc65 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -94,7 +94,7 @@ def _real_main(argv=None):
             if opts.verbose:
                 write_string('[debug] Batch file urls: ' + repr(batch_urls) + '\n')
         except IOError:
-            sys.exit('ERROR: batch file could not be read')
+            sys.exit('ERROR: batch file %s could not be read' % opts.batchfile)
     all_urls = batch_urls + [url.strip() for url in args]  # batch_urls are already striped in read_batch_urls
     _enc = preferredencoding()
     all_urls = [url.decode(_enc, 'ignore') if isinstance(url, bytes) else url for url in all_urls]