summaryrefslogtreecommitdiff
path: root/invest-applet/invest/chart.py
diff options
context:
space:
mode:
Diffstat (limited to 'invest-applet/invest/chart.py')
-rw-r--r--invest-applet/invest/chart.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/invest-applet/invest/chart.py b/invest-applet/invest/chart.py
index c6caff74..480e3bff 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()