diff --git a/0005-match-correctly-applied-hotpatchs.patch b/0005-match-correctly-applied-hotpatchs.patch index adb6d31..e032d38 100644 --- a/0005-match-correctly-applied-hotpatchs.patch +++ b/0005-match-correctly-applied-hotpatchs.patch @@ -29,7 +29,7 @@ index 8547abe..cfecb60 100644 - return "" + for hotpatch_info in [line for line in hotpatch_list_output.split(os.linesep) if line.startswith("CVE")]: + _, hot_pkg, status = hotpatch_info.strip().split() -+ if status == "ACTIVED": ++ if status in ("ACTIVED", "ACCEPTED"): + return hot_pkg + return None