Browse Source

python3: exchange_rate.py

seed_v14
SomberNight 7 years ago
parent
commit
48eab8f286
  1. 2
      lib/exchange_rate.py

2
lib/exchange_rate.py

@ -90,7 +90,7 @@ class ExchangeBase(PrintError):
def get_currencies(self):
rates = self.get_rates('')
return sorted([str(a) for (a, b) in rates.iteritems() if b is not None and len(a)==3])
return sorted([str(a) for (a, b) in rates.items() if b is not None and len(a)==3])
class BitcoinAverage(ExchangeBase):

Loading…
Cancel
Save