1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-15 01:29:33 +00:00

[compat] Correct compat_basestring definition

This commit is contained in:
Philipp Hagemeister 2015-02-01 11:36:59 +01:00
parent 8f9312c387
commit 0196149c5b

View file

@ -120,9 +120,9 @@ except NameError:
compat_str = str
try:
compat_basestr = basestring # Python 2
compat_basestring = basestring # Python 2
except NameError:
compat_basestr = str
compat_basestring = str
try:
compat_chr = unichr # Python 2
@ -367,6 +367,7 @@ def workaround_optparse_bug9161():
__all__ = [
'compat_HTTPError',
'compat_basestring',
'compat_chr',
'compat_cookiejar',
'compat_expanduser',