Default to dict even if not dict is present in a config file

This commit is contained in:
Michal Purzynski 2017-03-30 16:21:21 -07:00 коммит произвёл Brandon Myers
Родитель d9412421c4
Коммит b153a49111
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 8AA79AD83045BBC7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -43,7 +43,7 @@ class message(object):
self.options.keywords = getConfig('keywords', 'KEYWORDS', self.configfile)
self.options.clienturl = getConfig('clienturl', 'CLIENTURL', self.configfile)
try:
self.options.docs = json.loads(getConfig('docs', 'NOTHING', self.configfile))
self.options.docs = json.loads(getConfig('docs', {}, self.configfile))
except:
self.options.docs = {}