Browse Source

Expanduser for more options with input files

totalwebcasting
Sergey M․ 9 years ago
parent
commit
3e169233da
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
2 changed files with 2 additions and 1 deletions
  1. +1
    -0
      youtube_dl/YoutubeDL.py
  2. +1
    -1
      youtube_dl/__init__.py

+ 1
- 0
youtube_dl/YoutubeDL.py View File

@ -2018,6 +2018,7 @@ class YoutubeDL(object):
if opts_cookiefile is None:
self.cookiejar = compat_cookiejar.CookieJar()
else:
opts_cookiefile = compat_expanduser(opts_cookiefile)
self.cookiejar = compat_cookiejar.MozillaCookieJar(
opts_cookiefile)
if os.access(opts_cookiefile, os.R_OK):


+ 1
- 1
youtube_dl/__init__.py View File

@ -406,7 +406,7 @@ def _real_main(argv=None):
try:
if opts.load_info_filename is not None:
retcode = ydl.download_with_info_file(opts.load_info_filename)
retcode = ydl.download_with_info_file(compat_expanduser(opts.load_info_filename))
else:
retcode = ydl.download(all_urls)
except MaxDownloadsReached:


Loading…
Cancel
Save