wasn't working

This commit is contained in:
piair 2022-11-06 17:44:35 +01:00
parent 7ad71a1cf9
commit c651950e7c
1 changed files with 3 additions and 2 deletions

View File

@ -8,8 +8,9 @@ config = configparser.ConfigParser()
try :
config_path = f"{os.path.abspath( os.path.dirname( __file__ ) )}/user_data/config.cfg"
config.read(config_path)
except :
if config.read(config_path)==[] :
raise NameError("le fichier n'existe pas")
except : #doesn't work
default_config = f"{os.path.abspath( os.path.dirname( __file__ ) )}/user_data/config.default"
shutil.copyfile(default_config, config_path)
config.read(config_path)