This commit is contained in:
Nullart2 2018-08-15 12:37:30 +08:00
parent b34aa46181
commit 1edbc494ee
1 changed files with 2 additions and 2 deletions

View File

@ -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: