Skip to content

Commit e7bdb0b

Browse files
committed
fix: ensure non-ASCII characters are correctly displayed in JSON output
1 parent 276eef2 commit e7bdb0b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/get_acs_result.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def main():
6161
print(f"Error: Failed to parse JSON response: {e}")
6262
sys.exit(1)
6363

64-
print(f"\n{json.dumps(data, indent=2)}\n")
64+
print(f"\n{json.dumps(data, indent=2, ensure_ascii=False)}\n")
6565

6666
# 解析JSON获取resultUrl
6767
if data.get('code') == 0:

0 commit comments

Comments
 (0)