summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-04-07 04:25:24 +0200
committerhut <hut@lavabit.com>2010-04-07 04:25:24 +0200
commitf45f9734d2ff9fd6b68ff6c879d5b07b0e5c7d02 (patch)
treeecda3dc360dde1c6f65f2951450ced94808a5296 /ranger
parentbaa6e1adde808901558b70a1cd532fb3d4124bec (diff)
downloadranger-f45f9734d2ff9fd6b68ff6c879d5b07b0e5c7d02.tar.gz
use fm as arg.wdg in initialize_commands()
Diffstat (limited to 'ranger')
-rw-r--r--ranger/gui/ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/gui/ui.py b/ranger/gui/ui.py
index 68285718..458cfa5d 100644
--- a/ranger/gui/ui.py
+++ b/ranger/gui/ui.py
@@ -150,7 +150,7 @@ class UI(DisplayableContainer):
 				self.hint(cmd.show_obj.hint)
 		elif hasattr(cmd, 'execute'):
 			try:
-				cmd.execute_wrap(self)
+				cmd.execute_wrap(self.fm)
 			except Exception as error:
 				self.fm.notify(error)
 			self.env.key_clear()
125' href='#n125'>125 126 127 128 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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217