diff --git a/legendary/cli.py b/legendary/cli.py index 44b2b2d..8c6725f 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -1767,7 +1767,7 @@ class LegendaryCLI: logger.info('No remaining games found.') return - logger.info(f'Found {len(uplay_games)} games to redeem:') + logger.info(f'Found {len(uplay_games)} game(s) to redeem:') for game in sorted(uplay_games, key=lambda g: g.app_title.lower()): logger.info(f' - {game.app_title}') diff --git a/legendary/core.py b/legendary/core.py index adc4606..fd14d0b 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -421,7 +421,7 @@ class LegendaryCore: # setup and teardown of thread pool takes some time, so only do it when it makes sense. use_threads = len(fetch_list) > 5 if fetch_list: - self.log.info(f'Fetching metadata for {len(fetch_list)} apps.') + self.log.info(f'Fetching metadata for {len(fetch_list)} app(s).') if use_threads: with ThreadPoolExecutor(max_workers=16) as executor: executor.map(fetch_game_meta, fetch_list, timeout=60.0)