1
0
mirror of https://github.com/nvbn/thefuck.git synced 2024-10-05 18:31:10 +01:00

#N/A Use get_closest in no_command rule

This commit is contained in:
nvbn 2015-07-23 23:42:29 +03:00
parent ef2f642ffe
commit b5f2d0afb5

View File

@ -1,5 +1,5 @@
from difflib import get_close_matches
from thefuck.utils import sudo_support, get_all_executables
from thefuck.utils import sudo_support, get_all_executables, get_closest
@sudo_support
@ -12,8 +12,7 @@ def match(command, settings):
@sudo_support
def get_new_command(command, settings):
old_command = command.script.split(' ')[0]
new_command = get_close_matches(old_command,
get_all_executables())[0]
new_command = get_closest(old_command, get_all_executables())
return ' '.join([new_command] + command.script.split(' ')[1:])