mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
305b133c59
Summary: Biggest change is turning everything to unicode Test Plan: The tests Reviewers: dsagal, paulfitz Reviewed By: dsagal Differential Revision: https://phab.getgrist.com/D2875
17 lines
354 B
Python
17 lines
354 B
Python
import urllib
|
|
|
|
import six
|
|
from six.moves import urllib_parse
|
|
|
|
original_quote = urllib_parse.quote
|
|
|
|
def patched_quote(s, safe='/'):
|
|
if isinstance(s, six.text_type):
|
|
s = s.encode('utf8')
|
|
result = original_quote(s, safe=safe)
|
|
if isinstance(result, six.binary_type):
|
|
result = result.decode('utf8')
|
|
return result
|
|
|
|
urllib.quote = patched_quote
|