From 28b6083bf1b48c917f2e45fc8910da4941beddbd Mon Sep 17 00:00:00 2001 From: dxav Date: Mon, 28 Oct 2013 21:26:29 +0100 Subject: Upate yahoo finance http adress --- invest-applet/invest/chart.py | 2 +- invest-applet/invest/quotes.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/invest-applet/invest/chart.py b/invest-applet/invest/chart.py index e13e0686..0899351d 100644 --- a/invest-applet/invest/chart.py +++ b/invest-applet/invest/chart.py @@ -210,7 +210,7 @@ class FinancialChart: a += "%s%s," % (name[1:], param) # Create the image URL ----------------------------------------------------- - chart_base_url = "http://ichart.europe.yahoo.com/z?s=%(s)s&t=%(t)s&q=%(q)s&l=%(l)s&z=%(z)s&p=%(p)s&a=%(a)s%(opt)s" + chart_base_url = "http://chart.finance.yahoo.com/z?s=%(s)s&t=%(t)s&q=%(q)s&l=%(l)s&z=%(z)s&p=%(p)s&a=%(a)s%(opt)s" url = chart_base_url % { "s": tickers[0], "t": self.time_ranges[self.ui.get_object("t").get_active()], diff --git a/invest-applet/invest/quotes.py b/invest-applet/invest/quotes.py index 44943b1d..448c13bd 100644 --- a/invest-applet/invest/quotes.py +++ b/invest-applet/invest/quotes.py @@ -287,7 +287,7 @@ class QuoteUpdater(Gtk.ListStore): self.add_balance_change(balance, change, val["currency"]) if len(ticker.split('.')) == 2: - url = 'http://ichart.europe.yahoo.com/h?s=%s' % ticker + url = 'http://chart.finance.yahoo.com/h?s=%s' % ticker else: url = 'http://ichart.yahoo.com/h?s=%s' % ticker -- cgit v1.2.1