From: Vivek Vashist Date: Fri, 3 Jun 2022 22:59:26 +0000 (+0930) Subject: Fix minor typo (#3096) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/f51e53726b39a177355a7917c91c56f390dda7ef Fix minor typo (#3096) --- 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"):