diff options
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: |