From 38c32f0e10824a5222c0e7f6069629eb920fef09 Mon Sep 17 00:00:00 2001 From: Samuel Husso Date: Sat, 9 Jun 2018 08:40:32 +0300 Subject: [PATCH] flake8 fix --- freqtrade/freqtradebot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index 6e8a320bc..f532b681e 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -412,7 +412,8 @@ with limit `{buy_limit:.8f} ({stake_amount:.6f} \ raise OperationalException("Half bought? Amounts don't match") real_amount = amount - fee_abs if fee_abs != 0: - logger.info(f"Applying fee on amount for {trade} (from {order_amount} to {real_amount}) from Trades") + logger.info(f"""Applying fee on amount for {trade} \ +(from {order_amount} to {real_amount}) from Trades""") return real_amount def handle_trade(self, trade: Trade) -> bool: