Skip to content

Commit

Permalink
Fix capitalization of "Git"
Browse files Browse the repository at this point in the history
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
  • Loading branch information
brettcannon and hugovk authored Sep 11, 2023
1 parent ddc2225 commit 547879d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Lib/venv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ def main(args=None):
action='store_const', const=frozenset(),
default=frozenset(['git']),
help='Skips adding SCM ignore files to the environment '
'directory (git is supported by default).')
'directory (Git is supported by default).')
options = parser.parse_args(args)
if options.upgrade and options.clear:
raise ValueError('you cannot supply --upgrade and --clear together.')
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Add the ability for venv to create a ``.gitignore`` file which causes the
created environment to be ignored by git. It is on by default when venv is
created environment to be ignored by Git. It is on by default when venv is
called via its CLI.

0 comments on commit 547879d

Please sign in to comment.