From 9d7ebc65e734a7cbcf14e54fe8dc458f2137c97f Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 1 Sep 2019 09:21:45 +0200 Subject: [PATCH] Move return statement to correct intend --- freqtrade/freqtradebot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index 6fe2c7f15..ab3a1df28 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -641,7 +641,7 @@ class FreqtradeBot(object): except DependencyException: trade.stoploss_order_id = None logger.exception('Unable to place a stoploss order on exchange.') - return False + return False def handle_stoploss_on_exchange(self, trade: Trade) -> bool: """