From 5bf14246138d03c7c044e7a5720964223597cad3 Mon Sep 17 00:00:00 2001 From: nvbn Date: Thu, 7 May 2015 12:57:43 +0200 Subject: [PATCH] #164 Decrease priority of `no_command` --- thefuck/rules/no_command.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/thefuck/rules/no_command.py b/thefuck/rules/no_command.py index 917e1fc9..1a152c99 100644 --- a/thefuck/rules/no_command.py +++ b/thefuck/rules/no_command.py @@ -31,3 +31,6 @@ def get_new_command(command, settings): new_command = get_close_matches(old_command, _get_all_bins())[0] return ' '.join([new_command] + command.script.split(' ')[1:]) + + +priority = 3000