mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-08-21 05:44:02 -07:00
Appease pyflakes8-3
This commit is contained in:
parent
439b9a9e9b
commit
8f9312c387
3 changed files with 27 additions and 20 deletions
|
@ -25,6 +25,7 @@ if os.name == 'nt':
|
|||
import ctypes
|
||||
|
||||
from .compat import (
|
||||
compat_basestring,
|
||||
compat_cookiejar,
|
||||
compat_expanduser,
|
||||
compat_http_client,
|
||||
|
@ -1558,7 +1559,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 if sys.version_info < (3, 0) else compat_str)
|
||||
req_is_string = isinstance(req, compat_basestring)
|
||||
url = req if req_is_string else req.get_full_url()
|
||||
url_escaped = escape_url(url)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue