forgot finally 2.4 syntax

reviewable/pr18780/r1
Brian Coca 9 years ago
parent eeb9d34812
commit 286bc3d9dc

@ -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