aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/compat.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2021-04-06 14:22:28 +0700
committerSergey M․ <dstftw@gmail.com>2021-04-06 14:22:28 +0700
commit70d0d4f9beba0e5b6d95ee50ad62ae7ab5be9be1 (patch)
treec8f2a5a8971dcb2b2ce14cc7eadcc30785c71c73 /youtube_dl/compat.py
parent6b315d96bc0b07ddc3abaa7318583775828cce30 (diff)
downloadyoutube-dl-70d0d4f9beba0e5b6d95ee50ad62ae7ab5be9be1.tar.xz
[compat] Use more conventional name for compat SimpleCookie
Diffstat (limited to 'youtube_dl/compat.py')
-rw-r--r--youtube_dl/compat.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/youtube_dl/compat.py b/youtube_dl/compat.py
index 566e9d5ec..9e45c454b 100644
--- a/youtube_dl/compat.py
+++ b/youtube_dl/compat.py
@@ -74,13 +74,13 @@ except ImportError: # Python 2
import Cookie as compat_cookies
if sys.version_info[0] == 2:
- class compat_SimpleCookie(compat_cookies.SimpleCookie):
+ class compat_cookies_SimpleCookie(compat_cookies.SimpleCookie):
def load(self, rawdata):
if isinstance(rawdata, compat_str):
rawdata = str(rawdata)
- return super(compat_SimpleCookie, self).load(rawdata)
+ return super(compat_cookies_SimpleCookie, self).load(rawdata)
else:
- compat_SimpleCookie = compat_cookies.SimpleCookie
+ compat_cookies_SimpleCookie = compat_cookies.SimpleCookie
try:
import html.entities as compat_html_entities
@@ -3002,7 +3002,6 @@ __all__ = [
'compat_HTMLParseError',
'compat_HTMLParser',
'compat_HTTPError',
- 'compat_SimpleCookie',
'compat_Struct',
'compat_b64decode',
'compat_basestring',
@@ -3010,6 +3009,7 @@ __all__ = [
'compat_cookiejar',
'compat_cookiejar_Cookie',
'compat_cookies',
+ 'compat_cookies_SimpleCookie',
'compat_ctypes_WINFUNCTYPE',
'compat_etree_Element',
'compat_etree_fromstring',