diff options
Diffstat (limited to 'ranger/core/actions.py')
-rw-r--r-- | ranger/core/actions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py index 8bb66a62..703577d3 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -222,7 +222,7 @@ class Actions( # pylint: disable=too-many-instance-attributes,too-many-public-m Execute a command for the console """ command_name = string.lstrip().split()[0] - cmd_class = self.commands.get_command(command_name, abbrev=False) + cmd_class = self.commands.get_command(command_name) if cmd_class is None: self.notify("Command not found: `%s'" % command_name, bad=True) return |