diff options
author | Sergey M․ <dstftw@gmail.com> | 2014-09-30 22:27:53 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2014-09-30 22:27:53 +0700 |
commit | 4644ac5527e48a1a8c48dc790621c73913e6dbf8 (patch) | |
tree | 3ff5c762d57d8d07755959b442457821d13fdc90 /youtube_dl/YoutubeDL.py | |
parent | e497a7f2ca46d485c2839969abc598faa16c49dc (diff) |
[core] Decode environment variables with filesystem encoding (Fixes #3854, Fixes #3217, Fixes #2918)
Introduces compat versions of os.getenv and os.path.expanduser
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 4a9610355..34a1e3b5c 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -24,6 +24,7 @@ if os.name == 'nt': from .utils import ( compat_cookiejar, + compat_expanduser, compat_http_client, compat_str, compat_urllib_error, @@ -447,7 +448,7 @@ class YoutubeDL(object): template_dict = collections.defaultdict(lambda: 'NA', template_dict) outtmpl = self.params.get('outtmpl', DEFAULT_OUTTMPL) - tmpl = os.path.expanduser(outtmpl) + tmpl = compat_expanduser(outtmpl) filename = tmpl % template_dict return filename except ValueError as err: |