]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-100676: Improve description for venv --upgrade-deps (GH-100678)
authorRupa Lahiri <35212670+rblcoder@users.noreply.github.com>
Mon, 2 Jan 2023 12:17:58 +0000 (17:47 +0530)
committerGitHub <noreply@github.com>
Mon, 2 Jan 2023 12:17:58 +0000 (12:17 +0000)
Lib/venv/__init__.py

index 978c98336f2b3730a05430e2ebae3c320825bc12..2f87c62ccba866e9e4c6459e1ca0a1ffed6f12d8 100644 (file)
@@ -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: