diff options
-rw-r--r-- | ranger/core/actions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py index cdd3718c..6910871b 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -19,12 +19,12 @@ from inspect import cleandoc import ranger from ranger.ext.direction import Direction -from ranger.shared import EnvironmentAware, SettingsAware +from ranger.shared import FileManagerAware, EnvironmentAware, SettingsAware from ranger import fsobject from ranger.gui.widgets import console_mode as cmode from ranger.fsobject import File -class Actions(EnvironmentAware, SettingsAware): +class Actions(FileManagerAware, EnvironmentAware, SettingsAware): search_method = 'ctime' search_forward = False |