lang + small error fix

This commit is contained in:
piair
2023-05-08 20:56:55 +02:00
parent 4aef2bf948
commit 1a4ed4f4e7
4 changed files with 23 additions and 11 deletions

View File

@ -152,12 +152,12 @@ g.sql_database = config["SQL"]["database"]
try :
g.database_error_override = config["OTHER"]["database_override"]
g.database_error_override = config["OTHER"]["database_override"] == "True"
except :
pass
try :
g.fast = config["OTHER"]["fast"]
g.fast = config["OTHER"]["fast"] == "True"
except :
pass
h = open(g.mot_path, "r", encoding="utf-8")