diff options
author | infirit <[email protected]> | 2015-01-04 22:57:25 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2015-01-05 00:17:21 +0100 |
commit | 14ad0b4e9311e090865e3d613970bdc5b54ef274 (patch) | |
tree | 4dee29a2ce18c26747397bd80748d42279cc584f /invest-applet/invest/__init__.py | |
parent | 30a5f1e62ac9d12deef0c3ccf7f84b71b7f8ee41 (diff) | |
download | mate-applets-14ad0b4e9311e090865e3d613970bdc5b54ef274.tar.bz2 mate-applets-14ad0b4e9311e090865e3d613970bdc5b54ef274.tar.xz |
invest: Add saving and loading of currency conversion data
fixes #119
Diffstat (limited to 'invest-applet/invest/__init__.py')
-rw-r--r-- | invest-applet/invest/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/invest-applet/invest/__init__.py b/invest-applet/invest/__init__.py index d99328c2..10f727c4 100644 --- a/invest-applet/invest/__init__.py +++ b/invest-applet/invest/__init__.py @@ -149,6 +149,7 @@ try: except Exception, msg: CONFIG = {} # default configuration +CURRENCIES_FILE = join(USER_INVEST_DIR, "currencies.csv") QUOTES_FILE = join(USER_INVEST_DIR, "quotes.csv") |