From 63dfa52ea85c2d8f9dcabba5c457f0dc7c75e0b4 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 3 Nov 2024 13:43:30 +0100 Subject: [PATCH] chore: Fix missing space in log message --- freqtrade/freqtradebot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index 6f0f53959..8bdca119b 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -579,7 +579,7 @@ class FreqtradeBot(LoggingMixin): logger.warning( f"{trade} has a total of {trade.amount} {trade.base_currency}, " f"but the Wallet shows a total of {total} {trade.base_currency}. " - f"Adjusting trade amount to {total}." + f"Adjusting trade amount to {total}. " "This may however lead to further issues." ) trade.amount = total @@ -587,7 +587,7 @@ class FreqtradeBot(LoggingMixin): logger.warning( f"{trade} has a total of {trade.amount} {trade.base_currency}, " f"but the Wallet shows a total of {total} {trade.base_currency}. " - "Refusing to adjust as the difference is too large." + "Refusing to adjust as the difference is too large. " "This may however lead to further issues." ) if prev_trade_amount != trade.amount: