diff options
-rw-r--r-- | ranger/fm.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ranger/fm.py b/ranger/fm.py index 7993a207..5e8faa6b 100644 --- a/ranger/fm.py +++ b/ranger/fm.py @@ -43,13 +43,12 @@ class FM(Actions): from ranger.shared import FileManagerAware FileManagerAware.fm = self - def get_executables(self): + @property + def executables(self): if self._executables is None: self._executables = get_executables() return self._executables - executables = property(get_executables) - def initialize(self): """If ui/bookmarks are None, they will be initialized here.""" from ranger.fsobject.directory import Directory |