fix : unseen recursion mistake on empty value for work folder

This commit is contained in:
martin.legrand
2025-09-11 23:44:06 +02:00
parent f72c1b9b07
commit d80bda8468
+1 -2
View File
@@ -56,8 +56,7 @@ class Tools():
if path is None or path == "":
path = self.config['MAIN']['work_dir'] if 'MAIN' in self.config and 'work_dir' in self.config['MAIN'] else None
if path is None or path == "":
print("No work directory specified, using default.")
path = self.create_work_dir()
raise Exception("No work dir specified, please specify a work dir in .env file.")
return path
def config_exists(self):