diff options
author | Rupa Lahiri <35212670+rblcoder@users.noreply.github.com> | 2023-01-02 12:17:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-02 12:17:58 (GMT) |
commit | 9dee9731663d670652586c929190f227ab56bd8f (patch) | |
tree | c537d6f60ca408e91d466172af5b882cb4e95c6d /Lib/venv | |
parent | 7feb6d2f85d69fbabfc0598d8947124883167f12 (diff) | |
download | cpython-9dee9731663d670652586c929190f227ab56bd8f.zip cpython-9dee9731663d670652586c929190f227ab56bd8f.tar.gz cpython-9dee9731663d670652586c929190f227ab56bd8f.tar.bz2 |
gh-100676: Improve description for venv --upgrade-deps (GH-100678)
Diffstat (limited to 'Lib/venv')
-rw-r--r-- | Lib/venv/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py index 978c983..2f87c62 100644 --- a/Lib/venv/__init__.py +++ b/Lib/venv/__init__.py @@ -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: |