1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-02-21 20:38:54 +00:00

#701: Do not require git in the script

@git_support already does that
This commit is contained in:
Pablo Santiago Blum de Aguiar 2017-10-08 20:29:52 -03:00
parent dfd0be2002
commit af1a88b271

View File

@ -5,7 +5,7 @@ from thefuck.specific.git import git_support
@git_support
def match(command):
return "git remote delete" in command.script
return "remote delete" in command.script
@git_support