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