--config CLI Param fix

This commit is contained in:
2026-05-06 03:24:56 +01:00
parent c812091ce3
commit 0d1b362217
4 changed files with 26 additions and 9 deletions

View File

@@ -34,7 +34,7 @@ try:
except ImportError:
xw = None
from eb_dashboard_utils import get_nested_value, get_config_path
from eb_dashboard_utils import get_nested_value, get_config_path, get_dashboard_config_path
from eb_dashboard_constants import (
INCLUSIONS_FILE_NAME,
ORGANIZATIONS_FILE_NAME,
@@ -117,7 +117,7 @@ def load_excel_export_config(console_instance=None):
if console_instance:
console = console_instance
config_path = os.path.join(get_config_path(), DASHBOARD_CONFIG_FILE_NAME)
config_path = get_dashboard_config_path(DASHBOARD_CONFIG_FILE_NAME)
error_messages = []
try: