Index: make.py ================================================================== --- make.py +++ make.py @@ -29,11 +29,11 @@ sWarningMessage = "The content of this folder is generated by code and replaced at each build.\n" def getConfig (sLang): "load config.ini in at gc_lang/, returns xConfigParser object" - xConfig = configparser.SafeConfigParser() + xConfig = configparser.ConfigParser() xConfig.optionxform = str try: xConfig.read_file(open("gc_lang/" + sLang + "/config.ini", "r", encoding="utf-8")) except FileNotFoundError: print("# Error. Can’t read config file [" + sLang + "]")