From 1edbc494ee91b5303090fe6d46b92ed093b11ed4 Mon Sep 17 00:00:00 2001 From: Nullart2 Date: Wed, 15 Aug 2018 12:37:30 +0800 Subject: [PATCH] refactor --- freqtrade/freqtradebot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index 2ff999fdb..a2090d267 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -140,8 +140,8 @@ class FreqtradeBot(object): specific_pairs = '\n' + ', '.join(self.config['exchange'].get('pair_whitelist', '')) self.rpc.send_msg({ 'type': RPCMessageType.STATUS_NOTIFICATION, - 'status': f'Searching for {top_pairs} {stake_currency} pairs to buy and sell...\ - {specific_pairs}' + 'status': f'Searching for {top_pairs} {stake_currency} pairs to buy and sell...' + f'{specific_pairs}' }) def _throttle(self, func: Callable[..., Any], min_secs: float, *args, **kwargs) -> Any: