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:
parent
bc1023dc14
commit
69b0cc86ff
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue