Catch error if missing config
This commit is contained in:
parent
18f041c07c
commit
5114f83b5d
1 changed files with 6 additions and 2 deletions
|
@ -2,8 +2,12 @@ import yaml
|
|||
from dotmap import DotMap
|
||||
import os
|
||||
from md_pdf.consts import CONFIG_FILE
|
||||
from md_pdf.exceptions import ConfigValidationException
|
||||
|
||||
|
||||
def load_config():
|
||||
with open(os.path.join(CONFIG_FILE)) as f:
|
||||
return DotMap(yaml.load(f))
|
||||
try:
|
||||
with open(os.path.join(CONFIG_FILE)) as f:
|
||||
return DotMap(yaml.load(f))
|
||||
except FileNotFoundError:
|
||||
raise ConfigValidationException("Can't find config file at {}".format(CONFIG_FILE))
|
||||
|
|
Reference in a new issue