From bfee688ecce87e3c19e921a7f89b5189278d49a6 Mon Sep 17 00:00:00 2001 From: Preston Watson Date: Tue, 3 Sep 2024 09:45:32 -0400 Subject: [PATCH] Update comment --- convert2rhel/actions/system_checks/duplicate_packages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert2rhel/actions/system_checks/duplicate_packages.py b/convert2rhel/actions/system_checks/duplicate_packages.py index ff1be62778..f150cc5d0e 100644 --- a/convert2rhel/actions/system_checks/duplicate_packages.py +++ b/convert2rhel/actions/system_checks/duplicate_packages.py @@ -41,7 +41,7 @@ def run(self): if system_info.version.major == 7 and "name or service not known" in output.lower(): self.duplicate_packages_failure() return - # For el8 machines we can depend on just the return code being 1 to know the check failed + # For el8+ machines we can depend on just the return code being 1 to know the check failed if system_info.version.major >= 8 and ret_code == 1: self.duplicate_packages_failure() return