change name file parameters config_filename="tool_config_params.json"

This commit is contained in:
VALLONGOL 2025-04-29 13:37:14 +02:00
parent 9fd0e792a0
commit 139226d7a3

View File

@ -403,7 +403,7 @@ def run_managed_mode():
send_status("Icon Generator tool started (managed mode).") send_status("Icon Generator tool started (managed mode).")
# 1. Load configuration to get parameter definitions # 1. Load configuration to get parameter definitions
config = load_tool_config() # Assumes tool_config.json is in the same dir config = load_tool_config(config_filename="tool_config_params.json") # Assumes tool_config.json is in the same dir
if config is None: if config is None:
# Error message already printed by load_tool_config to stderr # Error message already printed by load_tool_config to stderr
sys.exit(3) # Specific exit code for config load failure sys.exit(3) # Specific exit code for config load failure