From 1328805fa5a884c554b75e112c35a0fdbe0744b7 Mon Sep 17 00:00:00 2001 From: voldemort <5692900+yell0wsuit@users.noreply.github.com> Date: Tue, 22 Jul 2025 21:16:04 +0700 Subject: [PATCH] refactor CDM checks to improve configuration loading, user prompts, and file handling, consolidate CDM download logic into a single function --- custom_functions/prechecks/cdm_checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_functions/prechecks/cdm_checks.py b/custom_functions/prechecks/cdm_checks.py index 048692f..6010ad9 100644 --- a/custom_functions/prechecks/cdm_checks.py +++ b/custom_functions/prechecks/cdm_checks.py @@ -38,7 +38,7 @@ def check_for_cdm(config_key, file_ext, download_url, cdm_dir, cdm_name): if not cdm_value: if prompt_yes_no( f"No default {cdm_name} CDM specified, would you like to download one " - "from The CDM Project? (Y)es/(N)o: " + "from The CDM Project? (Y)es / (N)o: " ): response = requests.get(download_url, timeout=10) if response.status_code == 200: