[utils] Remove debug garbage

This commit is contained in:
Sergey M․ 2014-09-13 21:08:04 +07:00
parent d05cfe0600
commit 984e8e14ea
1 changed files with 1 additions and 1 deletions

View 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):