summary refs log tree commit diff stats
path: root/ranger/core/actions.py
diff options
context:
space:
mode:
authornfnty <git@nfnty.se>2017-02-08 23:55:27 +0100
committernfnty <git@nfnty.se>2017-02-08 23:55:27 +0100
commitc377b4814a5560a6fc34c5e5a5df2fe39d289cad (patch)
treef8682e4b8a2e42cdfb039cddbf59c6f08b2d318b /ranger/core/actions.py
parent3fa65ae8bb8cca86742a4f4bf2980a9827aac748 (diff)
downloadranger-c377b4814a5560a6fc34c5e5a5df2fe39d289cad.tar.gz
api.commands.CommandContainer.get_command: Inverse `abbrev`
Diffstat (limited to 'ranger/core/actions.py')
-rw-r--r--ranger/core/actions.py2
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