Don't escape forward slashes on ujson.dumps

This commit is contained in:
ines 2017-08-19 22:32:16 +02:00
parent 2d126a00ae
commit 281e7e58b3
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ if is_python2:
unicode_ = unicode
basestring_ = basestring
input_ = raw_input
json_dumps = lambda data: ujson.dumps(data, indent=2).decode('utf8')
json_dumps = lambda data: ujson.dumps(data, indent=2, escape_forward_slashes=False).decode('utf8')
path2str = lambda path: str(path).decode('utf8')
elif is_python3:
@ -60,7 +60,7 @@ elif is_python3:
unicode_ = str
basestring_ = str
input_ = input
json_dumps = lambda data: ujson.dumps(data, indent=2)
json_dumps = lambda data: ujson.dumps(data, indent=2, escape_forward_slashes=False)
path2str = lambda path: str(path)