Skip to content

Commit a9db7d0

Browse files
committed
chore: improve log wording
1 parent 19140e9 commit a9db7d0

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

freqtrade/exchange/exchange.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2600,10 +2600,15 @@ def _build_ohlcv_dl_jobs(
26002600
CandleType.FUTURES,
26012601
)
26022602
if invalid_timeframe or invalid_funding:
2603+
timeframes_ = (
2604+
", ".join(self.timeframes)
2605+
if candle_type != CandleType.FUNDING_RATE
2606+
else self.get_option("funding_fee_timeframe")
2607+
)
26032608
logger.warning(
26042609
f"Cannot download ({pair}, {timeframe}, {candle_type}) combination as this "
26052610
f"timeframe is not available on {self.name}. Available timeframes are "
2606-
f"{', '.join(self.timeframes)}."
2611+
f"{timeframes_}."
26072612
)
26082613
continue
26092614

0 commit comments

Comments
 (0)