From 751af555759bb2339c6dae0705d0a3a1a84a0b22 Mon Sep 17 00:00:00 2001 From: Bryan Schumaker Date: Sat, 20 Nov 2010 09:54:14 -0500 Subject: [PATCH] Move cache into path/ The cache modifies files, so it can be part of path/ --- libsaria/__init__.py | 2 +- libsaria/{ => path}/cache.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename libsaria/{ => path}/cache.py (100%) diff --git a/libsaria/__init__.py b/libsaria/__init__.py index 838f5c98..a8fea654 100644 --- a/libsaria/__init__.py +++ b/libsaria/__init__.py @@ -13,7 +13,7 @@ if __dev__ == True: import event import path from trees import Tree, PersPrefTree -from cache import Cache +from path.cache import Cache # The cache is also saved across sessions prefs = None diff --git a/libsaria/cache.py b/libsaria/path/cache.py similarity index 100% rename from libsaria/cache.py rename to libsaria/path/cache.py