Fix spelling mistake causing "first_run" to be executed twice

main
Alexander Neff 2023-05-28 00:09:37 +02:00
parent e5ff5a9870
commit 0da869f236
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ from cme.first_run import first_run_setup
cme_config = configparser.ConfigParser()
cme_config.read(os.path.join(CME_PATH, "cme.conf"))
if "cme" not in cme_config.sections():
if "CME" not in cme_config.sections():
first_run_setup()
cme_config.read(os.path.join(CME_PATH, "cme.conf"))