[utils] Remove debug garbage
authorSergey M․ <dstftw@gmail.com>
Sat, 13 Sep 2014 14:08:04 +0000 (21:08 +0700)
committerSergey M․ <dstftw@gmail.com>
Sat, 13 Sep 2014 14:08:04 +0000 (21:08 +0700)
youtube_dl/utils.py

index 9124c36212481b860b92d4bc35676e4ab3453bd4..e924b1688d1d7e61c3ef8aded9fab8d98a873394 100644 (file)
@@ -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):