fixed: apply ConfigParser(strict=False) to other callsites

https://github.com/ltdrdata/ComfyUI-Manager/pull/1561
This commit is contained in:
Dr.Lt.Data
2025-02-19 22:07:47 +09:00
parent df3cdfccb0
commit cee4fdcbb0
4 changed files with 8 additions and 8 deletions

View File

@@ -76,7 +76,7 @@ core.check_invalid_nodes()
def read_downgrade_blacklist():
try:
import configparser
config = configparser.ConfigParser()
config = configparser.ConfigParser(strict=False)
config.read(core.manager_config.path)
default_conf = config['default']