Skip to content

Commit c3b7b06

Browse files
committed
Make message more readable
1 parent 2b8c0c6 commit c3b7b06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cloudai/cli/handlers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def _handle_single_sbatch(args: argparse.Namespace, system: System) -> bool:
239239
def _check_installation(
240240
args: argparse.Namespace, system: System, tests: list[Test], test_scenario: TestScenario
241241
) -> InstallStatusResult:
242-
logging.info("Checking if workloads' components are installed.")
242+
logging.info("Checking if workloads components are installed.")
243243
installables, installer = prepare_installation(system, tests, test_scenario)
244244

245245
if args.enable_cache_without_check:
@@ -269,7 +269,7 @@ def handle_dry_run_and_run(args: argparse.Namespace) -> int:
269269

270270
result = _check_installation(args, system, tests, test_scenario)
271271
if not result.success:
272-
logging.info("Not all workloads' components are installed. Installing...")
272+
logging.info("Not all workloads components are installed. Installing...")
273273
installables, installer = prepare_installation(system, tests, test_scenario)
274274

275275
result = installer.install(installables)

0 commit comments

Comments
 (0)