From a27cd5f6ec29ce02cf5703371a18f99efeae98e3 Mon Sep 17 00:00:00 2001 From: Peter Ondrejka Date: Wed, 28 Feb 2024 15:57:28 +0100 Subject: [PATCH] host package_list fix (#13989) --- robottelo/cli/hammer.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/robottelo/cli/hammer.py b/robottelo/cli/hammer.py index dcc2468ba7c..0471754002f 100644 --- a/robottelo/cli/hammer.py +++ b/robottelo/cli/hammer.py @@ -49,8 +49,9 @@ def parse_csv(output): # ignore warning about puppet and ostree deprecation output.replace('Puppet and OSTree will no longer be supported in Katello 3.16\n', '') is_rex = True if 'Job invocation' in output else False + is_pkg_list = True if 'Nvra' in output else False # Validate if the output is eligible for CSV conversions else return as it is - if not is_csv(output) and not is_rex: + if not is_csv(output) and not is_rex and not is_pkg_list: return output output = output.splitlines()[0:2] if is_rex else output.splitlines() reader = csv.reader(output)