From 7d9de709c348f44f9094578d362e560778e1f53d Mon Sep 17 00:00:00 2001 From: Jimmy Date: Thu, 2 Jan 2025 18:46:16 -0600 Subject: [PATCH] merge args.host into system_config['hostname'] --- config_init.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config_init.py b/config_init.py index cb0e317..e8a8e7f 100644 --- a/config_init.py +++ b/config_init.py @@ -76,7 +76,7 @@ def merge_config(system_config:dict[str, Any], args:argparse.Namespace) -> dict[ system_config['port'] = args.port if args.host is not None: - system_config['host'] = args.host + system_config['hostname'] = args.host return system_config