Skip to content

Commit 23c04c0

Browse files
authored
Merge pull request #200 from pusher/json-ensure-ascii-false
Json ensure ascii false
2 parents 1209b3e + 9a66eb4 commit 23c04c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pusher/util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def data_to_string(data, json_encoder):
110110
return ensure_text(data, "data")
111111

112112
else:
113-
return json.dumps(data, cls=json_encoder)
113+
return json.dumps(data, cls=json_encoder, ensure_ascii=False)
114114

115115

116116
def doc_string(doc):

0 commit comments

Comments
 (0)