about summary refs log tree commit diff stats
path: root/ranger/fsobject/directory.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2009-12-23 20:02:39 +0100
committerhut <hut@lavabit.com>2009-12-23 20:02:39 +0100
commitfd39b80a83da3049198ef317aab2d7bc5c82039a (patch)
tree15f2f6762f79002266db64a0885d83806ab5d509 /ranger/fsobject/directory.py
parent793554498569c8f39e0ffcff4b475a948a4645c8 (diff)
downloadranger-fd39b80a83da3049198ef317aab2d7bc5c82039a.tar.gz
optimized directory loading
instead of creating a new directory object when loading_content,
get the one which is cached in the environment.
Diffstat (limited to 'ranger/fsobject/directory.py')
-rw-r--r--ranger/fsobject/directory.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/fsobject/directory.py b/ranger/fsobject/directory.py
index 99a4bc61..44c4cf96 100644
--- a/ranger/fsobject/directory.py
+++ b/ranger/fsobject/directory.py
@@ -128,10 +128,10 @@ class Directory(SuperClass, SettingsAware):
 			files = []
 			for name in self.filenames:
 				if isdir(name):
-					item = Directory(name)
+					item = self.fm.env.get_directory(name)
 				else:
 					item = File(name)
-				item.load()
+				item.load_if_outdated()
 				files.append(item)
 				yield