1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-14 14:48:49 +00:00

Change: remove period from git checkout error output.

This commit is contained in:
ik1ne 2019-07-19 14:31:15 +09:00
parent 01a5ba99d0
commit fc705befc7

View File

@ -8,7 +8,7 @@ from thefuck.shells import shell
@git_support
def match(command):
return ('did not match any file(s) known to git.' in command.output
return ('did not match any file(s) known to git' in command.output
and "Did you forget to 'git add'?" not in command.output)