1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Avoid errors when options.cfg has no data

In that case res==False which was not accounted for, resulting in
AttributeError: 'bool' object has no attribute 'items'.

Closes #193.
This commit is contained in:
Juhani Numminen 2020-11-06 18:10:44 +02:00
parent bc1023dc14
commit 69b0cc86ff

View file

@ -648,7 +648,7 @@ class Options:
vdt = validate.Validator()
res = config.validate(vdt)
# from pprint import pprint; pprint(res)
if res is not True:
if isinstance(res, dict):
for section, data in res.items():
if data is True:
continue