Fix minor typo (#3096)

This commit is contained in:
Vivek Vashist 2022-06-04 08:29:26 +09:30 committed by GitHub
parent 436e12f290
commit f51e53726b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ def blackify(base_branch: str, black_command: str, logger: logging.Logger) -> in
current_branch = git("branch", "--show-current") current_branch = git("branch", "--show-current")
if not current_branch or base_branch == current_branch: if not current_branch or base_branch == current_branch:
logger.error("You need to check out a feature brach to work on") logger.error("You need to check out a feature branch to work on")
return 1 return 1
if not os.path.exists(".git"): if not os.path.exists(".git"):