30 lines
1.3 KiB
Diff
30 lines
1.3 KiB
Diff
From 75fec4829ff33c6e0b6e306bb3b730a7527fd352 Mon Sep 17 00:00:00 2001
|
|
From: rabbitali <wenxin32@foxmail.com>
|
|
Date: Tue, 12 Dec 2023 11:04:06 +0800
|
|
Subject: [PATCH 1/1] fix unboundlocalerror with variable name log
|
|
|
|
---
|
|
ceres/manages/vulnerability_manage.py | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/ceres/manages/vulnerability_manage.py b/ceres/manages/vulnerability_manage.py
|
|
index 0b6fb88..038c68d 100644
|
|
--- a/ceres/manages/vulnerability_manage.py
|
|
+++ b/ceres/manages/vulnerability_manage.py
|
|
@@ -664,10 +664,10 @@ class VulnerabilityManage:
|
|
try:
|
|
hotpatch_name = rpm.rsplit(".", 1)[0].split("-", 1)[1]
|
|
_, hotpatch_status_set_log = self._set_hotpatch_status_by_dnf_plugin(hotpatch_name, "accept")
|
|
- log += f"\n\n{hotpatch_status_set_log}"
|
|
+ tmp["log"] += f"\n\n{hotpatch_status_set_log}"
|
|
except IndexError as error:
|
|
LOGGER.error(error)
|
|
- log += f"\n\nhotpatch status set failed due to can't get correct hotpatch name!"
|
|
+ tmp["log"] += f"\n\nhotpatch status set failed due to can't get correct hotpatch name!"
|
|
package_update_info.append(tmp)
|
|
return final_fix_result, package_update_info, upgrade_count
|
|
|
|
--
|
|
2.33.0
|
|
|