Reformat log statement

This commit is contained in:
Matthias 2019-03-21 06:14:43 +01:00
parent 937399606e
commit 7fdb099097

View File

@ -78,9 +78,7 @@ class IPairList(ABC):
# Check if market is active # Check if market is active
market = markets[pair] market = markets[pair]
if not market['active']: if not market['active']:
logger.info( logger.info(f"Ignoring {pair} from whitelist. Market is not active.")
f"Ignoring {pair} from whitelist. Market is not active."
)
continue continue
sanitized_whitelist.add(pair) sanitized_whitelist.add(pair)