perf: yaml文件读取使用utf-8编码

This commit is contained in:
halo
2023-05-27 11:53:00 +08:00
committed by Jiangjie.Bai
parent 7708812556
commit a1ed59d116
2 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ def get_platform_automation_methods(path):
if not path.endswith('manifest.yml'):
continue
with open(path, 'r') as f:
with open(path, 'r', encoding='utf8') as f:
manifest = yaml_load_with_i18n(f)
check_platform_method(manifest, path)
manifest['dir'] = os.path.dirname(path)