aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-09-13 21:08:04 +0700
committerSergey M․ <dstftw@gmail.com>2014-09-13 21:08:04 +0700
commit984e8e14ea266d406c253098f953e727ca8c19c7 (patch)
treef5831918b6952367ae6886f7b7af7e4b56cf37ba
parentd05cfe06006c4a44032e95dde047d5e12be8674c (diff)
downloadyoutube-dl-984e8e14ea266d406c253098f953e727ca8c19c7.tar.xz
[utils] Remove debug garbage
-rw-r--r--youtube_dl/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
index 9124c3621..e924b1688 100644
--- 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):