diff options
author | hut <hut@lavabit.com> | 2013-03-10 15:04:09 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2013-03-10 15:10:56 +0100 |
commit | b53e2659a41b12eeb66b62ac74f3fc664760a539 (patch) | |
tree | ece36bfd1b8c6b2471abb7bc6367617d2f57bcbd /ranger | |
parent | 5a48cca9549eda475e754eb683db767f04dff231 (diff) | |
download | ranger-b53e2659a41b12eeb66b62ac74f3fc664760a539.tar.gz |
container.directory: fix wrong check for None
Diffstat (limited to 'ranger')
-rw-r--r-- | ranger/container/directory.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/container/directory.py b/ranger/container/directory.py index 4d1d0315..d6af21ea 100644 --- a/ranger/container/directory.py +++ b/ranger/container/directory.py @@ -166,7 +166,7 @@ class Directory(FileSystemObject, Accumulator, Loadable, SettingsAware): return [] def refilter(self, signal=None): - if not self.files_all: + if self.files_all is None: return # propably not loaded yet self.last_update_time = time() |