diff options
author | Stefano Karapetsas <[email protected]> | 2013-10-29 11:21:32 -0700 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-10-29 11:21:32 -0700 |
commit | 5b846d375f39bbe6cb350a6c7399ebd87fd26cec (patch) | |
tree | a5927b6995fcbf07fe6e9392c22a027090988ba1 /invest-applet/invest | |
parent | d3178d6a81bb95316193d24926bed3fdc943355e (diff) | |
parent | 302344d247784c10ab688f71b6c8e1b8638bf35d (diff) | |
download | mate-applets-5b846d375f39bbe6cb350a6c7399ebd87fd26cec.tar.bz2 mate-applets-5b846d375f39bbe6cb350a6c7399ebd87fd26cec.tar.xz |
Merge pull request #61 from dxav/master
Upate yahoo finance http adress
Diffstat (limited to 'invest-applet/invest')
-rw-r--r-- | invest-applet/invest/chart.py | 2 | ||||
-rw-r--r-- | 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 |