We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06523e3 commit c510f5cCopy full SHA for c510f5c
1 file changed
M3GraphBuilder/utils.py
@@ -59,9 +59,14 @@ def load_config_from_ini_file():
59
output_path = os.path.join(app_root_parent, config.get("output", "path"))
60
log_path = os.path.join(app_root_parent, config.get("logging", "path"))
61
62
- config_dict["project"] = config.items("project")
+ config_dict["project"] = {
63
+ "name": config.get("project", "name"),
64
+ "desc": config.get("project", "desc")
65
+ }
66
config_dict["output"] ={ "path": output_path }
- config_dict["logging"] = { "path": log_path, "verbose": config.get("logging", "verbose") }
67
+ config_dict["logging"] = {
68
+ "path": log_path,
69
+ "verbose": config.get("logging", "verbose") }
70
71
72
return config_dict
0 commit comments