about summary refs log tree commit diff stats
path: root/ranger/fsobject/directory.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-05-23 03:11:20 +0200
committerhut <hut@lavabit.com>2010-05-23 03:11:20 +0200
commitca44b07676fd0ffaf9be9e2ad6c211f84973cde4 (patch)
tree325e3e35edf1291886c339541b8740847cb87670 /ranger/fsobject/directory.py
parent46693c4b84e522d3c26740a7642188fbb628a2b8 (diff)
downloadranger-ca44b07676fd0ffaf9be9e2ad6c211f84973cde4.tar.gz
fsobject.fsobject: removed access() call in load function
Diffstat (limited to 'ranger/fsobject/directory.py')
-rw-r--r--ranger/fsobject/directory.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/fsobject/directory.py b/ranger/fsobject/directory.py
index 50564835..1cef8ed8 100644
--- a/ranger/fsobject/directory.py
+++ b/ranger/fsobject/directory.py
@@ -165,7 +165,7 @@ class Directory(FileSystemObject, Accumulator, SettingsAware):
 		self.load_if_outdated()
 
 		try:
-			if self.exists and self.runnable:
+			if self.runnable:
 				yield
 				self.mount_path = mount_path(self.path)