浏览代码

[utils] Remove debug garbage

Sergey M․ 11 年之前
父节点
当前提交
984e8e14ea
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      youtube_dl/utils.py

+ 1 - 1
youtube_dl/utils.py

@@ -1423,7 +1423,7 @@ def escape_rfc3986(s):
     """Escape non-ASCII characters as suggested by RFC 3986"""
     """Escape non-ASCII characters as suggested by RFC 3986"""
     if sys.version_info < (3, 0) and isinstance(s, unicode):
     if sys.version_info < (3, 0) and isinstance(s, unicode):
         s = s.encode('utf-8')
         s = s.encode('utf-8')
-    return compat_urllib_parse.quote(s, "%/;:@&=+$,!~*'()?#[]") #"%/;:@&=+$,!~*'()?#[]+"   #?#[]+
+    return compat_urllib_parse.quote(s, "%/;:@&=+$,!~*'()?#[]")
 
 
 
 
 def escape_url(url):
 def escape_url(url):