From 063509afdc929d903bb74a0212bafd7c84afd2f7 Mon Sep 17 00:00:00 2001 From: Miku Laitinen Date: Tue, 28 Jul 2015 16:13:17 +0300 Subject: [PATCH] Fixed the Yahoo service URL. Last time the previous URL worked was on 2015-03-11. --- currency_rate_update/services/update_service_YAHOO.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/currency_rate_update/services/update_service_YAHOO.py b/currency_rate_update/services/update_service_YAHOO.py index e0b8bdd51..56017126f 100644 --- a/currency_rate_update/services/update_service_YAHOO.py +++ b/currency_rate_update/services/update_service_YAHOO.py @@ -34,7 +34,7 @@ class YAHOO_getter(Currency_getter_interface): """implementation of abstract method of curreny_getter_interface""" self.validate_cur(main_currency) url = ('http://download.finance.yahoo.com/d/' - 'quotes.txt?s="%s"=X&f=sl1c1abg') + 'quotes.csv?s=%s=X&f=sl1c1abg') if main_currency in currency_array: currency_array.remove(main_currency) for curr in currency_array: