Skip to content

Commit ee9e70b

Browse files
authored
fix json dumps in server.py
1 parent affc15a commit ee9e70b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pantograph/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def run(self, cmd, payload):
125125
:meta private:
126126
"""
127127
assert self.proc
128-
s = json.dumps(payload)
128+
s = json.dumps(payload, ensure_ascii=False)
129129
self.proc.sendline(f"{cmd} {s}")
130130
try:
131131
line = self.proc.readline()

0 commit comments

Comments
 (0)