diff --git a/plugins/exchange_rate.py b/plugins/exchange_rate.py index 0ecaf29c5..25603c76a 100644 --- a/plugins/exchange_rate.py +++ b/plugins/exchange_rate.py @@ -85,7 +85,7 @@ class ExchangeBase(PrintError): class BitcoinAverage(ExchangeBase): - def update(self, ccy): + def get_rates(self, ccy): json = self.get_json('api.bitcoinaverage.com', '/ticker/global/all') return dict([(r, Decimal(json[r]['last'])) for r in json if r != 'timestamp'])