Skip to content

Commit

Permalink
host info issues fix (#15599)
Browse files Browse the repository at this point in the history
  • Loading branch information
pondrejk committed Jul 9, 2024
1 parent 441e37b commit a3579b2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions robottelo/cli/host.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit a3579b2

Please sign in to comment.