diff options
author | Sergey M․ <dstftw@gmail.com> | 2014-09-28 02:48:41 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2014-09-28 02:48:41 +0700 |
commit | ee0d90707a38537355bab8527edd9a42d6514aa9 (patch) | |
tree | 468ccd713c6829bce36fd04da2b87d97b953ddb4 /youtube_dl/YoutubeDL.py | |
parent | f776d8f6081b305ba7ccc1bda323aa510a01db7b (diff) |
[YoutubeDL] Fix string check for python3
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index b485dbdf1..4a9610355 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1250,7 +1250,7 @@ class YoutubeDL(object): # urllib chokes on URLs with non-ASCII characters (see http://bugs.python.org/issue3991) # To work around aforementioned issue we will replace request's original URL with # percent-encoded one - req_is_string = isinstance(req, basestring) + req_is_string = isinstance(req, basestring if sys.version_info < (3, 0) else compat_str) url = req if req_is_string else req.get_full_url() url_escaped = escape_url(url) |