diff --git a/freqtrade/data/history/history_utils.py b/freqtrade/data/history/history_utils.py index 305d6bcf3..92d8f44c5 100644 --- a/freqtrade/data/history/history_utils.py +++ b/freqtrade/data/history/history_utils.py @@ -678,7 +678,7 @@ def download_data_main(config: Config) -> None: ) finally: if pairs_not_available: + errors = "\n" + ("\n".join(pairs_not_available)) logger.warning( - f"Encountered a problem downloading the following pairs from {exchange.name}: \n" - f"{'\n'.join(pairs_not_available)}" + f"Encountered a problem downloading the following pairs from {exchange.name}: {errors}" )