diff --git a/core/save.py b/core/save.py index 5553690a710d6940bc267beef04fc4f69d2610f1..1bb2550cc1b7ea20970627e206e10637a842fd68 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)