From 9cbb81edf58fe6aae9eb934527be5a96178c718d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 2 Sep 2020 10:51:01 +0530 Subject: [PATCH] typo --- setup/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/__init__.py b/setup/__init__.py index bf1365fe44..0fe060a5c1 100644 --- a/setup/__init__.py +++ b/setup/__init__.py @@ -75,7 +75,7 @@ def build_cache_dir(): def require_git_master(branch='master'): if subprocess.check_output(['git', 'symbolic-ref', '--short', 'HEAD']).strip() != branch: - raise SystemExit('You must be in the {} got branch'.format(branch)) + raise SystemExit('You must be in the {} git branch'.format(branch)) def require_clean_git():