Skip to content

Commit 6430ad1

Browse files
fix(cli): ensure JSON output is ASCII compliant in system info display
1 parent 1f72c7d commit 6430ad1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ossin/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def display_system_info(
152152
columns = Columns(panels, equal=True, expand=True)
153153
console.print(columns)
154154
elif format_type == OutputFormat.JSON:
155-
console.print_json(data=system_info)
155+
console.print_json(data=system_info, ensure_ascii=True)
156156

157157

158158
@app.command()

0 commit comments

Comments
 (0)