aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--youtube_dl/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
index 7e7d1e8b6..f60141bd1 100644
--- a/youtube_dl/utils.py
+++ b/youtube_dl/utils.py
@@ -1285,7 +1285,7 @@ def parse_xml(s):
if sys.version_info < (3, 0) and sys.platform == 'win32':
def compat_getpass(prompt, *args, **kwargs):
if isinstance(prompt, compat_str):
- prompt = prompt.encode(getpreferredencoding())
+ prompt = prompt.encode(preferredencoding())
return getpass.getpass(prompt, *args, **kwargs)
else:
compat_getpass = getpass.getpass