设置encoding=utf-8
This commit is contained in:
parent
4308e72aa4
commit
7a34437ab2
1 changed files with 2 additions and 1 deletions
3
main.py
3
main.py
|
@ -62,13 +62,14 @@ class Api:
|
|||
bufsize=1,
|
||||
text=True,
|
||||
cwd=cwd,
|
||||
encoding="utf-8",
|
||||
) as p:
|
||||
for line in p.stdout:
|
||||
custom_event(line)
|
||||
|
||||
|
||||
window = webview.create_window("mower-ng launcher", "dist/index.html", js_api=Api())
|
||||
webview.start()
|
||||
webview.start(debug=True)
|
||||
|
||||
with config_path.open("w") as f:
|
||||
json.dump(config, f)
|
||||
|
|
Loading…
Reference in a new issue