diff options
author | hut <hut@lavabit.com> | 2010-05-23 03:11:20 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-05-23 03:11:20 +0200 |
commit | ca44b07676fd0ffaf9be9e2ad6c211f84973cde4 (patch) | |
tree | 325e3e35edf1291886c339541b8740847cb87670 /ranger/fsobject/directory.py | |
parent | 46693c4b84e522d3c26740a7642188fbb628a2b8 (diff) | |
download | ranger-ca44b07676fd0ffaf9be9e2ad6c211f84973cde4.tar.gz |
fsobject.fsobject: removed access() call in load function
Diffstat (limited to 'ranger/fsobject/directory.py')
-rw-r--r-- | ranger/fsobject/directory.py | 2 |
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) |