forked from GithubBackups/healthchecks
check for existence instead of catching error
This commit is contained in:
parent
837349882f
commit
ca352cfccb
@ -17,10 +17,11 @@ import warnings
|
|||||||
|
|
||||||
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||||||
|
|
||||||
try:
|
|
||||||
p = os.path.expanduser("~/.hc.json")
|
p = os.path.expanduser("~/.hc.json")
|
||||||
|
if os.path.exists(p):
|
||||||
env = json.loads(open(p).read())
|
env = json.loads(open(p).read())
|
||||||
except FileNotFoundError:
|
else:
|
||||||
warnings.warn("~/.hc.json does not exist, using defaults")
|
warnings.warn("~/.hc.json does not exist, using defaults")
|
||||||
env = {}
|
env = {}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user