mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-20 04:44:46 +08:00
fix: issue 1138 windows encoding (#1139)
* fix(windows): use utf-8 for text file operations * fix(windows): normalize sandbox path masking * fix(windows): preserve utf-8 handling after backend split
This commit is contained in:
@@ -24,7 +24,7 @@ def generate_ppt(
|
||||
Status message
|
||||
"""
|
||||
# Load presentation plan
|
||||
with open(plan_file, "r") as f:
|
||||
with open(plan_file, "r", encoding="utf-8") as f:
|
||||
plan = json.load(f)
|
||||
|
||||
# Determine slide dimensions based on aspect ratio
|
||||
|
||||
Reference in New Issue
Block a user