From 56256f9c3ad479da1c5e510f56e6a6e40044d404 Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Mon, 20 Feb 2023 09:08:03 -0600 Subject: [PATCH] Add missing spaces to `--keep-outdated` deprecation text Fixes #5618 --- news/5618.trivial.rst | 1 + pipenv/cli/options.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 news/5618.trivial.rst diff --git a/news/5618.trivial.rst b/news/5618.trivial.rst new file mode 100644 index 00000000..718a6602 --- /dev/null +++ b/news/5618.trivial.rst @@ -0,0 +1 @@ +Add missing spaces to the ``--keep-outdated`` flag's deprecation warning. diff --git a/pipenv/cli/options.py b/pipenv/cli/options.py index e3fe51cf..9e883b0c 100644 --- a/pipenv/cli/options.py +++ b/pipenv/cli/options.py @@ -157,7 +157,7 @@ def keep_outdated_option(f): state.installstate.keep_outdated = value if value: click.secho( - "The flag --keep-outdated has been deprecated for removal." + "The flag --keep-outdated has been deprecated for removal. " "The flag does not respect package resolver results and leads to inconsistent lock files. " "Please pin relevant requirements in your Pipfile and discontinue use of this flag.", fg="yellow",