14 lines
341 B
Python
14 lines
341 B
Python
from thefuck.utils import replace_argument
|
|
from thefuck.specific.git import git_support
|
|
|
|
|
|
@git_support
|
|
def match(command):
|
|
return ('branch -d' in command.script
|
|
and 'If you are sure you want to delete it' in command.output)
|
|
|
|
|
|
@git_support
|
|
def get_new_command(command):
|
|
return replace_argument(command.script, '-d', '-D')
|