From af08f5d11b7f17823d1e5e2408463e7244f74097 Mon Sep 17 00:00:00 2001 From: derrod Date: Thu, 30 Dec 2021 16:24:24 +0100 Subject: [PATCH] [cli] Fix overlay install error message (no resume) --- legendary/cli.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/legendary/cli.py b/legendary/cli.py index c3c4565..abb933e 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -2065,9 +2065,8 @@ class LegendaryCLI: dlm.start() dlm.join() except Exception as e: - logger.warning(f'The following exception occurred while waiting for the downloader to finish: {e!r}. ' - f'Try restarting the process, the resume file will be used to start where it failed. ' - f'If it continues to fail please open an issue on GitHub.') + logger.error(f'The following exception occurred while waiting for the downloader to finish: {e!r}. ' + f'Try restarting the process, if it continues to fail please open an issue on GitHub.') else: logger.info('Finished downloading, setting up overlay...') self.core.finish_overlay_install(igame)