Skip to content

Commit 9dee973

Browse files
authored
gh-100676: Improve description for venv --upgrade-deps (GH-100678)
1 parent 7feb6d2 commit 9dee973

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/venv/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ def main(args=None):
523523
'this environment.')
524524
parser.add_argument('--upgrade-deps', default=False, action='store_true',
525525
dest='upgrade_deps',
526-
help=f'Upgrade core dependencies: {" ".join(CORE_VENV_DEPS)} '
526+
help=f'Upgrade core dependencies: {", ".join(CORE_VENV_DEPS)} '
527527
'to the latest version in PyPI')
528528
options = parser.parse_args(args)
529529
if options.upgrade and options.clear:

0 commit comments

Comments
 (0)