diff options
-rw-r--r-- | ranger/gui/ui.py | 2 |
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() |