diff options
author | Stefano Karapetsas <[email protected]> | 2012-01-27 11:19:49 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2012-01-27 11:19:49 +0100 |
commit | c7b2e180e6cfb4aec22f8ab3e0aebc6773032216 (patch) | |
tree | 06712266abecdc4b8980885c2547d0087fa68fc7 /invest-applet/invest/about.py | |
parent | 843576a9e066a18dce191d96eb962d3b0bbde63b (diff) | |
download | mate-applets-c7b2e180e6cfb4aec22f8ab3e0aebc6773032216.tar.bz2 mate-applets-c7b2e180e6cfb4aec22f8ab3e0aebc6773032216.tar.xz |
'invest' python module is now 'mate-invest' to solve conflicts with gnome
Diffstat (limited to 'invest-applet/invest/about.py')
-rw-r--r-- | invest-applet/invest/about.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/invest-applet/invest/about.py b/invest-applet/invest/about.py index e2829e86..82e7d486 100644 --- a/invest-applet/invest/about.py +++ b/invest-applet/invest/about.py @@ -1,13 +1,13 @@ # -*- coding: utf-8 -*- from os.path import join from gettext import gettext as _ -from invest.defs import VERSION -import invest +from mate-invest.defs import VERSION +import mate-invest import gtk, gtk.gdk invest_logo = None try: - invest_logo = gtk.gdk.pixbuf_new_from_file_at_size(join(invest.ART_DATA_DIR, "invest_neutral.svg"), 96, 96) + invest_logo = gtk.gdk.pixbuf_new_from_file_at_size(join(mate-invest.ART_DATA_DIR, "invest_neutral.svg"), 96, 96) except Exception, msg: pass |