From 438490fd2934a7bfbf7e937f139d0f39fa0acd99 Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Mon, 12 Nov 2018 15:11:04 +0530 Subject: [PATCH] fix: changed currency exchange API to frankfurter - Switched to Frankfurter's public API (frankfurter.app) from self hosted API (frankfurter.erpnext.org) --- erpnext/setup/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/setup/utils.py b/erpnext/setup/utils.py index f318c042d5..dfff74a78c 100644 --- a/erpnext/setup/utils.py +++ b/erpnext/setup/utils.py @@ -95,7 +95,7 @@ def get_exchange_rate(from_currency, to_currency, transaction_date=None): if not value: import requests - api_url = "https://frankfurter.erpnext.org/{0}".format(transaction_date) + api_url = "https://frankfurter.app/{0}".format(transaction_date) response = requests.get(api_url, params={ "base": from_currency, "symbols": to_currency