chore: Fix missing space in log message

This commit is contained in:
Matthias
2024-11-03 13:43:30 +01:00
parent 74507e9981
commit 63dfa52ea8

View File

@@ -579,7 +579,7 @@ class FreqtradeBot(LoggingMixin):
logger.warning( logger.warning(
f"{trade} has a total of {trade.amount} {trade.base_currency}, " f"{trade} has a total of {trade.amount} {trade.base_currency}, "
f"but the Wallet shows a total of {total} {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." "This may however lead to further issues."
) )
trade.amount = total trade.amount = total
@@ -587,7 +587,7 @@ class FreqtradeBot(LoggingMixin):
logger.warning( logger.warning(
f"{trade} has a total of {trade.amount} {trade.base_currency}, " f"{trade} has a total of {trade.amount} {trade.base_currency}, "
f"but the Wallet shows a total of {total} {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." "This may however lead to further issues."
) )
if prev_trade_amount != trade.amount: if prev_trade_amount != trade.amount: