From 65c5f473fc7b5b2a172bd4a0febc0580916ba7b5 Mon Sep 17 00:00:00 2001 From: wangchong1995924 <15229716099@163.com> Date: Fri, 22 Dec 2023 15:26:51 +0800 Subject: [PATCH] fix a error --- tools/verify_repo_binary_install_uninstall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/verify_repo_binary_install_uninstall.py b/tools/verify_repo_binary_install_uninstall.py index 905c5ff..6f06523 100644 --- a/tools/verify_repo_binary_install_uninstall.py +++ b/tools/verify_repo_binary_install_uninstall.py @@ -101,7 +101,7 @@ def get_project_packages(): pkglist = [] yaml_file = os.path.join(os.getcwd(), "config/%s/%s/to_check.yaml" % (args.branch, p)) - file_msg = read_yaml(yaml_file, Loader=yaml.SafeLoader) + file_msg = read_yaml(yaml_file) if file_msg: if file_msg["packages"]: for pkg in file_msg['packages']: -- Gitee