Fix method call to BitcoinAverage

This commit is contained in:
Tim Bellefleur 2015-10-15 13:10:00 -07:00
parent 6bd191966e
commit 80bf9952e8
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class ExchangeBase(PrintError):
class BitcoinAverage(ExchangeBase): class BitcoinAverage(ExchangeBase):
def update(self, ccy): def get_rates(self, ccy):
json = self.get_json('api.bitcoinaverage.com', '/ticker/global/all') json = self.get_json('api.bitcoinaverage.com', '/ticker/global/all')
return dict([(r, Decimal(json[r]['last'])) return dict([(r, Decimal(json[r]['last']))
for r in json if r != 'timestamp']) for r in json if r != 'timestamp'])