Initialise stream variable

Fixes `UnboundLocalError: local variable 'stream' referenced before
assignment` when the check path doesnt exist
This commit is contained in:
Darren Worrall 2015-09-15 16:40:01 +01:00
parent ea1bd0b078
commit 4ead053031

View file

@ -182,6 +182,7 @@ def sensu_check(module, path, name, state='present', backup=False):
except ImportError: except ImportError:
import simplejson as json import simplejson as json
stream = None
try: try:
try: try:
stream = open(path, 'r') stream = open(path, 'r')