diff options
author | hut <hut@lavabit.com> | 2010-05-15 19:09:18 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-05-15 19:09:18 +0200 |
commit | bf9c33fca7f33818670aa3b55b5873c6da99ec31 (patch) | |
tree | b8b408f5b0b22838499f289b7c88b9c9d58242a7 /ranger/fsobject/directory.py | |
parent | 420d3d1af8d2991ae6a8cbe061adaab878c4b3ff (diff) | |
parent | 72545b1b7b982ca282e0dc4f2361d3abba727b48 (diff) | |
download | ranger-bf9c33fca7f33818670aa3b55b5873c6da99ec31.tar.gz |
Merge branch 'master' into cp
Diffstat (limited to 'ranger/fsobject/directory.py')
-rw-r--r-- | ranger/fsobject/directory.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/fsobject/directory.py b/ranger/fsobject/directory.py index 60387e7b..930ecb70 100644 --- a/ranger/fsobject/directory.py +++ b/ranger/fsobject/directory.py @@ -231,7 +231,6 @@ class Directory(FileSystemObject, Accumulator, SettingsAware): self.cycle_list = None self.content_loaded = True - self.determine_infostring() self.last_update_time = time() self.correct_pointer() @@ -250,7 +249,8 @@ class Directory(FileSystemObject, Accumulator, SettingsAware): self.content_outdated = False if not self.loading: - self.load_once() + if not self.loaded: + self.load() if not self.accessible: self.content_loaded = True |