Skip to content

Commit

Permalink
[6.15.z] host package_list fix (#14211)
Browse files Browse the repository at this point in the history
  • Loading branch information
Satellite-QE authored Feb 28, 2024
1 parent 23fc02c commit 72d182e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion robottelo/cli/hammer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 72d182e

Please sign in to comment.