From d58ae8a8c14be34d54141a510bc2077812eaf465 Mon Sep 17 00:00:00 2001 From: Kuy Krawczeniuk Date: Fri, 26 Mar 2021 15:49:40 -0700 Subject: [PATCH] Fix typos --- freqtrade/data/history/history_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freqtrade/data/history/history_utils.py b/freqtrade/data/history/history_utils.py index 294420852..eee421cf6 100644 --- a/freqtrade/data/history/history_utils.py +++ b/freqtrade/data/history/history_utils.py @@ -165,7 +165,7 @@ def _download_pair_history(datadir: Path, exchange: Exchange, pair: str, *, since, until = timerange.startts, timerange.stopts logger.info( - f'Downloading history data for par: "{pair}", timeframe: ' + f'Downloading history data for pair: "{pair}", timeframe: ' f'{timeframe} and storing in "{datadir}"' ) @@ -234,7 +234,7 @@ def _download_pair_history(datadir: Path, exchange: Exchange, pair: str, *, except Exception: logger.exception( - f'Failed to download history data for pari: "{pair}", ' + f'Failed to download history data for pair: "{pair}", ' f'timeframe: {timeframe}.' ) return False