This commit is contained in:
iuvbio 2019-02-17 15:34:44 +01:00
parent 39c28626aa
commit da4faacd6b

View File

@ -60,7 +60,8 @@ class FreqtradeBot(object):
try: try:
self.exchange = ExchangeResolver(exchange_name, self, self.config).exchange self.exchange = ExchangeResolver(exchange_name, self, self.config).exchange
except ImportError: 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.exchange = Exchange(self.config)
self.wallets = Wallets(self.exchange) self.wallets = Wallets(self.exchange)