diff options
author | infirit <[email protected]> | 2014-02-08 16:56:25 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-02-08 17:26:53 +0100 |
commit | c36ff1bb4e59d9afcb8b845a411d21d2b53aaf69 (patch) | |
tree | ae41f430c1ee76ce0c9be0557370b708728a1ae1 /invest-applet/invest/__init__.py | |
parent | bc75ed06615f2eaaf8cc2846112fd71dcdc5210c (diff) | |
download | mate-applets-c36ff1bb4e59d9afcb8b845a411d21d2b53aaf69.tar.bz2 mate-applets-c36ff1bb4e59d9afcb8b845a411d21d2b53aaf69.tar.xz |
invest-applet: downloaded quotes get cached
- this allows to show most recently retrieved quotes on next start up in case the system is offline by that time
Author: Enrico Minack <[email protected]>
Gnome commit: 65212e8cd3a101e69fc9f7877450ab5198af9681
Url: https://git.gnome.org/browse/gnome-applets/commit/?id=65212e8cd3a101e69fc9f7877450ab5198af9681
Diffstat (limited to 'invest-applet/invest/__init__.py')
-rw-r--r-- | invest-applet/invest/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/invest-applet/invest/__init__.py b/invest-applet/invest/__init__.py index da6a2512..d99328c2 100644 --- a/invest-applet/invest/__init__.py +++ b/invest-applet/invest/__init__.py @@ -149,6 +149,8 @@ try: except Exception, msg: CONFIG = {} # default configuration +QUOTES_FILE = join(USER_INVEST_DIR, "quotes.csv") + # set default proxy config PROXY = None |