Fix error 'fail_json() takes exactly 1 argument'

Fixes bug #1257
This commit is contained in:
Michael Weber 2015-12-01 01:56:23 -08:00 committed by Matt Clay
parent 058feb47c2
commit bee443c983

View file

@ -265,7 +265,7 @@ def main():
module.fail_json(msg='no command passed for command action')
##################################################################
if not cmdfile:
module.fail_json('unable to locate nagios.cfg')
module.fail_json(msg='unable to locate nagios.cfg')
##################################################################
ansible_nagios = Nagios(module, **module.params)