diff --git a/freqtrade/data/history/history_utils.py b/freqtrade/data/history/history_utils.py index a4096a28b..294420852 100644 --- a/freqtrade/data/history/history_utils.py +++ b/freqtrade/data/history/history_utils.py @@ -184,7 +184,7 @@ def _download_pair_history(datadir: Path, exchange: Exchange, pair: str, *, if cached_start else 'None') logger.debug("Cached End: %s", f"{cached.iloc[-1]['date']:%Y-%m-%d %H:%M:%S}" - if not cached_end else 'None') + if cached_end else 'None') # Set the bounds for downloading since_ms, until_ms = None, None