aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2021-04-07 15:29:33 +0200
committerGitHub <noreply@github.com>2021-04-07 15:29:33 +0200
commitc23145ce2a58c5f789e779c0f93cdda385c4dc2e (patch)
treeffd60ad6945bf8a2d35ef7c21bcad40c2209e8a8 /ihatemoney
parent3ae54c13f94b841ad8e31f5bcce16456404a4ce3 (diff)
downloadihatemoney-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.py2
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