handled case where there is no config file

This commit is contained in:
Stephen Mardson McQuay 2011-03-23 11:51:54 -06:00
parent 50cc783b97
commit fda2246c14
1 changed files with 5 additions and 4 deletions

View File

@ -20,13 +20,14 @@ default_config = {
'pypath': None,
}
with open(os.path.expanduser('~/.config/interp.json')) as config_file:
d = json.load(config_file)
try:
with open(os.path.expanduser('~/.config/interp.json')) as config_file:
d = json.load(config_file)
except IOError as e:
d = {}
config = dict(default_config.items() + d.items())
print config
logger = logging.getLogger('interp')
logger.setLevel(LEVELS[config['level']])
my_format = logging.Formatter('%(asctime)s %(levelname)s (%(process)d) %(filename)s %(funcName)s:%(lineno)d %(message)s')