From 76465aa6bdb6465404ad4adf5cd561771decbe62 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Sat, 5 Sep 2015 23:05:34 +0900 Subject: [PATCH] ExchangeBase is not an exchange --- plugins/exchange_rate.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/exchange_rate.py b/plugins/exchange_rate.py index 1991fcc07..2f1b836eb 100644 --- a/plugins/exchange_rate.py +++ b/plugins/exchange_rate.py @@ -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())