diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2021-04-07 15:29:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-07 15:29:33 +0200 |
| commit | c23145ce2a58c5f789e779c0f93cdda385c4dc2e (patch) | |
| tree | ffd60ad6945bf8a2d35ef7c21bcad40c2209e8a8 /ihatemoney | |
| parent | 3ae54c13f94b841ad8e31f5bcce16456404a4ce3 (diff) | |
| download | ihatemoney-mirror-c23145ce2a58c5f789e779c0f93cdda385c4dc2e.zip ihatemoney-mirror-c23145ce2a58c5f789e779c0f93cdda385c4dc2e.tar.gz ihatemoney-mirror-c23145ce2a58c5f789e779c0f93cdda385c4dc2e.tar.bz2 | |
Change the URL of the exchange API. Fixes #735 (#736)
Diffstat (limited to 'ihatemoney')
| -rw-r--r-- | ihatemoney/currency_convertor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ihatemoney/currency_convertor.py b/ihatemoney/currency_convertor.py index 10026ee..881d542 100644 --- a/ihatemoney/currency_convertor.py +++ b/ihatemoney/currency_convertor.py @@ -14,7 +14,7 @@ class Singleton(type): class CurrencyConverter(object, metaclass=Singleton): # Get exchange rates no_currency = "XXX" - api_url = "https://api.exchangeratesapi.io/latest?base=USD" + api_url = "https://api.exchangerate.host/latest?base=USD" def __init__(self): pass |
