projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d05cfe0
)
[utils] Remove debug garbage
author
Sergey M․
<dstftw@gmail.com>
Sat, 13 Sep 2014 14:08:04 +0000
(21:08 +0700)
committer
Sergey M․
<dstftw@gmail.com>
Sat, 13 Sep 2014 14:08:04 +0000
(21:08 +0700)
youtube_dl/utils.py
patch
|
blob
|
history
diff --git
a/youtube_dl/utils.py
b/youtube_dl/utils.py
index 9124c36212481b860b92d4bc35676e4ab3453bd4..e924b1688d1d7e61c3ef8aded9fab8d98a873394 100644
(file)
--- a/
youtube_dl/utils.py
+++ b/
youtube_dl/utils.py
@@
-1423,7
+1423,7
@@
def escape_rfc3986(s):
"""Escape non-ASCII characters as suggested by RFC 3986"""
if sys.version_info < (3, 0) and isinstance(s, unicode):
s = s.encode('utf-8')
- return compat_urllib_parse.quote(s, "%/;:@&=+$,!~*'()?#[]")
#"%/;:@&=+$,!~*'()?#[]+" #?#[]+
+ return compat_urllib_parse.quote(s, "%/;:@&=+$,!~*'()?#[]")
def escape_url(url):