projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f776d8f
)
[YoutubeDL] Fix string check for python3
author
Sergey M․
<dstftw@gmail.com>
Sat, 27 Sep 2014 19:48:41 +0000
(
02:48
+0700)
committer
Sergey M․
<dstftw@gmail.com>
Sat, 27 Sep 2014 19:48:41 +0000
(
02:48
+0700)
youtube_dl/YoutubeDL.py
patch
|
blob
|
history
diff --git
a/youtube_dl/YoutubeDL.py
b/youtube_dl/YoutubeDL.py
index b485dbdf1c61eda1b4b6817bce353f119a416e14..4a9610355aea878cb7daa68abd2f65e398cbee69 100755
(executable)
--- 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)