This commit is contained in:
iuvbio 2019-02-17 15:34:44 +01:00
parent 39c28626aa
commit da4faacd6b
1 changed files with 2 additions and 1 deletions

View File

@ -60,7 +60,8 @@ class FreqtradeBot(object):
try:
self.exchange = ExchangeResolver(exchange_name, self, self.config).exchange
except ImportError:
logger.info(f"No {exchange_name} specific subclass found. Using the generic class instead.")
logger.info(
f"No {exchange_name} specific subclass found. Using the generic class instead.")
self.exchange = Exchange(self.config)
self.wallets = Wallets(self.exchange)