summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-04-07 04:21:58 +0200
committerhut <hut@lavabit.com>2010-04-07 04:21:58 +0200
commitcb5d6dcdcb59451ff7a4f7fc494c9baab9fce654 (patch)
tree3b128eb24acae8d5b7de774dbf1a1b0e921c2a01
parent937a7c4980888fabdecf2a6ee39157ae5d0888a9 (diff)
downloadranger-cb5d6dcdcb59451ff7a4f7fc494c9baab9fce654.tar.gz
core.actions: Make fm FileManagerAware
-rw-r--r--ranger/core/actions.py4
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
 
'#n129'>129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160