publish eve_orehold_watcher.py

This commit is contained in:
brockdarnold 2026-06-14 07:30:06 +00:00
parent 4289e65e6f
commit f6a2b96bb2

View file

@ -48,7 +48,7 @@ def load_config():
sys.exit(f"No config.ini found. Copy config.ini.example -> config.ini "
f"and edit it.\n(looked in {CONFIG_PATH})")
cp = configparser.ConfigParser()
cp.read(CONFIG_PATH)
cp.read(CONFIG_PATH, encoding="utf-8-sig") # tolerate a UTF-8 BOM
return cp