From f51e53726b39a177355a7917c91c56f390dda7ef Mon Sep 17 00:00:00 2001 From: Vivek Vashist Date: Sat, 4 Jun 2022 08:29:26 +0930 Subject: [PATCH] Fix minor typo (#3096) --- scripts/migrate-black.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/migrate-black.py b/scripts/migrate-black.py index 5a6bc42..1183cb8 100755 --- a/scripts/migrate-black.py +++ b/scripts/migrate-black.py @@ -16,7 +16,7 @@ def blackify(base_branch: str, black_command: str, logger: logging.Logger) -> in current_branch = git("branch", "--show-current") 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 if not os.path.exists(".git"): -- 2.39.2