Skip to content

Commit

Permalink
Merge pull request #200 from pusher/json-ensure-ascii-false
Browse files Browse the repository at this point in the history
Json ensure ascii false
  • Loading branch information
robertoles authored Feb 21, 2023
2 parents 1209b3e + 9a66eb4 commit 23c04c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pusher/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def data_to_string(data, json_encoder):
return ensure_text(data, "data")

else:
return json.dumps(data, cls=json_encoder)
return json.dumps(data, cls=json_encoder, ensure_ascii=False)


def doc_string(doc):
Expand Down

0 comments on commit 23c04c0

Please sign in to comment.