diff options
author | hut <hut@lavabit.com> | 2010-11-22 02:35:59 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-11-22 02:35:59 +0100 |
commit | ea1797127be066a38096c8c43a34cba554ff2089 (patch) | |
tree | 7b68dec7b1a6e05d85510254f7e0d070b1f4a11d | |
parent | 2ef7d919e75ba172257b5f5cbc1ad0abe371e0b3 (diff) | |
download | ranger-ea1797127be066a38096c8c43a34cba554ff2089.tar.gz |
fsobject: The lazy lookup of .image attribute was *too* lazy
Conflicts: ranger/fsobject/fsobject.py
-rw-r--r-- | ranger/fsobject/fsobject.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ranger/fsobject/fsobject.py b/ranger/fsobject/fsobject.py index 6e18d0e3..4db24eba 100644 --- a/ranger/fsobject/fsobject.py +++ b/ranger/fsobject/fsobject.py @@ -98,6 +98,10 @@ class FileSystemObject(MimeTypeAware, FileManagerAware): except OSError: return "" + for attr in ('video', 'audio', 'image', 'media', 'document', 'container'): + exec("%s = lazy_property(" + "lambda self: self.set_mimetype() or self.%s)" % (attr, attr)) + def __str__(self): """returns a string containing the absolute path""" return str(self.path) |