From 3c7fac1340d1d683be65aedfba7aedd6db4486cf Mon Sep 17 00:00:00 2001 From: wangchong1995924 <15229716099@163.com> Date: Thu, 3 Dec 2020 15:48:23 +0800 Subject: [PATCH] fix error --- core/save.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/save.py b/core/save.py index 5553690..1bb2550 100644 --- a/core/save.py +++ b/core/save.py @@ -105,7 +105,7 @@ class SaveInfo(object): datestr_root_path = os.path.join(self.obs_pkg_rpms_files_dir, branch_name) if not os.path.exists(datestr_root_path): os.makedirs(datestr_root_path) - latest_rpm_file = os.path.join(self.obs_pkg_rpms_files_dir, "latest_rpm,", "%s.csv" % branch_name) + latest_rpm_file = os.path.join(self.obs_pkg_rpms_files_dir, "latest_rpm", "%s.csv" % branch_name) with open(latest_rpm_file, "w") as f: f_csv = csv.writer(f) file_list = os.listdir(datestr_root_path) -- Gitee