forgot finally 2.4 syntax

pull/18777/head
Brian Coca 10 years ago committed by Matt Clay
parent bfa63e01e5
commit a4a17630cd

@ -182,6 +182,7 @@ def sensu_check(module, path, name, state='present', backup=False):
except ImportError:
import simplejson as json
try:
try:
stream = open(path, 'r')
config = json.load(stream.read())
@ -276,6 +277,7 @@ def sensu_check(module, path, name, state='present', backup=False):
if changed and not module.check_mode:
if backup:
module.backup_local(path)
try:
try:
stream = open(path, 'w')
stream.write(json.dumps(config, indent=2) + '\n')

Loading…
Cancel
Save