diff options
author | Perberos <[email protected]> | 2012-01-30 12:07:26 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2012-01-30 12:07:26 -0300 |
commit | 764b33d33ca2884e606e722cedd9e33bd88d901e (patch) | |
tree | 0a34ecb3809f459b663a3475ac56cf887c44af0f /invest-applet/invest/chart.py | |
parent | 934a0a1f1c7766dd8193e020af6bed8134488e83 (diff) | |
parent | e094167059fd482d254e3724ddc28a640d8a4156 (diff) | |
download | mate-applets-764b33d33ca2884e606e722cedd9e33bd88d901e.tar.bz2 mate-applets-764b33d33ca2884e606e722cedd9e33bd88d901e.tar.xz |
Merge branch 'master' of https://github.com/mate-desktop/mate-applets
Diffstat (limited to 'invest-applet/invest/chart.py')
-rw-r--r-- | invest-applet/invest/chart.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/invest-applet/invest/chart.py b/invest-applet/invest/chart.py index c6caff74..358c51df 100644 --- a/invest-applet/invest/chart.py +++ b/invest-applet/invest/chart.py @@ -3,9 +3,9 @@ import gtk, gtk.gdk import gobject import os -import invest +import mate_invest from gettext import gettext as _ -from invest import * +from mate_invest import * import sys from os.path import join import urllib @@ -48,9 +48,9 @@ class ImageRetriever(Thread, _IdleObject): def run(self): self.image = gtk.Image() - try: sock = urllib.urlopen(self.image_url, proxies = invest.PROXY) + try: sock = urllib.urlopen(self.image_url, proxies = mate_invest.PROXY) except Exception, msg: - invest.debug("Error while opening %s: %s" % (self.image_url, msg)) + mate_invest.debug("Error while opening %s: %s" % (self.image_url, msg)) else: loader = gtk.gdk.PixbufLoader() loader.connect("closed", lambda loader: self.image.set_from_pixbuf(loader.get_pixbuf())) @@ -107,10 +107,10 @@ class FinancialChart: win.set_title(_("Financial Chart")) try: - pixbuf = gtk.gdk.pixbuf_new_from_file_at_size(join(invest.ART_DATA_DIR, "invest_neutral.svg"), 96,96) + pixbuf = gtk.gdk.pixbuf_new_from_file_at_size(join(mate_invest.ART_DATA_DIR, "invest_neutral.svg"), 96,96) self.ui.get_object("plot").set_from_pixbuf(pixbuf) except Exception, msg: - invest.debug("Could not load 'invest-neutral.svg' file: %s" % msg) + mate_invest.debug("Could not load 'invest-neutral.svg' file: %s" % msg) pass # Defaut comboboxes values @@ -249,7 +249,7 @@ class FinancialChart: def show_chart(tickers): ui = gtk.Builder(); - ui.add_from_file(os.path.join(invest.BUILDER_DATA_DIR, "financialchart.ui")) + ui.add_from_file(os.path.join(mate_invest.BUILDER_DATA_DIR, "financialchart.ui")) chart = FinancialChart(ui) ui.get_object("s").set_text(' '.join(tickers)) chart.on_refresh_chart() |