From 7a8f12d5507d7166bc0f4255f7e31ae9d1711c68 Mon Sep 17 00:00:00 2001 From: Neal Magee Date: Wed, 10 Jul 2024 11:08:02 -0400 Subject: [PATCH 1/3] Fixing incorrect command reminder after installs --- pipenv/routines/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/routines/install.py b/pipenv/routines/install.py index 173df2c918..e299ef7e5f 100644 --- a/pipenv/routines/install.py +++ b/pipenv/routines/install.py @@ -614,7 +614,7 @@ def do_init( ) else: if old_hash: - msg = "Pipfile.lock ({0}) out of date: run `pipfile lock` to update to ({1})..." + msg = "Pipfile.lock ({0}) out of date: run `pipenv lock` to update to ({1})..." else: msg = "Pipfile.lock is corrupt, replaced with ({1})..." err.print( From a9e14de23aef2d4a5f1989584b8eaa195970b2b3 Mon Sep 17 00:00:00 2001 From: Neal Magee Date: Sat, 13 Jul 2024 21:26:57 -0400 Subject: [PATCH 2/3] Adding news/ file per PR comment --- news/6199.news.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 news/6199.news.rst diff --git a/news/6199.news.rst b/news/6199.news.rst new file mode 100644 index 0000000000..c6ba026357 --- /dev/null +++ b/news/6199.news.rst @@ -0,0 +1 @@ +Fix incorrect command reminder after installs. From 1bc8a171c552d63cf2db10ec4495b47f65bd02a1 Mon Sep 17 00:00:00 2001 From: Neal Magee Date: Sun, 14 Jul 2024 21:15:32 -0400 Subject: [PATCH 3/3] Rename the news/ file correctly --- news/{6199.news.rst => 6199.trivial.rst} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename news/{6199.news.rst => 6199.trivial.rst} (100%) diff --git a/news/6199.news.rst b/news/6199.trivial.rst similarity index 100% rename from news/6199.news.rst rename to news/6199.trivial.rst