Cache dir setup

The cache should use path.saria_dir() to determine the correct path,
rather than setting it directly.
This commit is contained in:
Bryan Schumaker 2010-10-30 12:47:41 -04:00
parent 16e3aac2ed
commit c5a606193a
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ join = path.join
ls = path.ls
rm = path.rm
CACHE_DIR = expand("~/.saria/cache")
CACHE_DIR = join(path.saria_dir(), "cache")
mkdir(CACHE_DIR)
class CacheObject: