1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 23:14:49 +08:00

Open yaml files with utf-8 encoding for extra_model_paths.yaml (#6807)

* Using utf-8 encoding for yaml files.

* Fix test assertion.
This commit is contained in:
Robin Huang
2025-02-13 17:39:04 -08:00
committed by GitHub
parent 019c7029ea
commit 042a905c37
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ import folder_paths
import logging
def load_extra_path_config(yaml_path):
with open(yaml_path, 'r') as stream:
with open(yaml_path, 'r', encoding='utf-8') as stream:
config = yaml.safe_load(stream)
yaml_dir = os.path.dirname(os.path.abspath(yaml_path))
for c in config: