ExchangeBase is not an exchange

This commit is contained in:
Neil Booth 2015-09-05 23:05:34 +09:00
parent 9e0e54157e
commit 76465aa6bd
1 changed files with 2 additions and 1 deletions

View File

@ -193,7 +193,8 @@ class Plugin(BasePlugin, ThreadJob):
self.hist_checkbox = None
is_exchange = lambda obj: (inspect.isclass(obj)
and issubclass(obj, ExchangeBase))
and issubclass(obj, ExchangeBase)
and obj != ExchangeBase)
self.exchanges = dict(inspect.getmembers(sys.modules[__name__],
is_exchange))
self.set_exchange(self.config_exchange())