From a3579b2326af4bf015f02c5b50fde2b32224f656 Mon Sep 17 00:00:00 2001 From: Peter Ondrejka Date: Tue, 9 Jul 2024 21:36:27 +0200 Subject: [PATCH] host info issues fix (#15599) --- robottelo/cli/host.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/robottelo/cli/host.py b/robottelo/cli/host.py index cf7b9f3695..823d59c192 100644 --- a/robottelo/cli/host.py +++ b/robottelo/cli/host.py @@ -157,10 +157,14 @@ def facts(cls, options=None): return facts @classmethod - def info(cls, options=None): + def info(cls, options=None, output_format='json', return_raw_response=None): """Show host info""" cls.command_sub = 'info' - return cls.execute(cls._construct_command(options), output_format='json') + return cls.execute( + cls._construct_command(options), + output_format=output_format, + return_raw_response=return_raw_response, + ) @classmethod def package_install(cls, options):