Skip to content

Commit

Permalink
gh-100676: Improve description for venv --upgrade-deps (GH-100678)
Browse files Browse the repository at this point in the history
  • Loading branch information
rblcoder authored Jan 2, 2023
1 parent 7feb6d2 commit 9dee973
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/venv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ def main(args=None):
'this environment.')
parser.add_argument('--upgrade-deps', default=False, action='store_true',
dest='upgrade_deps',
help=f'Upgrade core dependencies: {" ".join(CORE_VENV_DEPS)} '
help=f'Upgrade core dependencies: {", ".join(CORE_VENV_DEPS)} '
'to the latest version in PyPI')
options = parser.parse_args(args)
if options.upgrade and options.clear:
Expand Down

0 comments on commit 9dee973

Please sign in to comment.