diff options
Diffstat (limited to 'youtube_dl/utils.py')
| -rw-r--r-- | youtube_dl/utils.py | 2 | 
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): | 
