From 9c715289e9d132d5e6c37d82539067b27f8101a1 Mon Sep 17 00:00:00 2001 From: jxltom Date: Mon, 5 Nov 2018 20:20:13 +0800 Subject: [PATCH] Fix typo on spinner result text --- pipenv/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/core.py b/pipenv/core.py index bf4145e5..2091bd08 100644 --- a/pipenv/core.py +++ b/pipenv/core.py @@ -323,7 +323,7 @@ def ensure_pipfile(validate=True, skip_requirements=False, system=False): except Exception: sp.fail(environments.PIPENV_SPINNER_FAIL_TEXT.format("Failed...")) else: - sp.ok(environments.PIPENV_SPINNER_FAIL_TEXT.format("Success!")) + sp.ok(environments.PIPENV_SPINNER_OK_TEXT.format("Success!")) # Warn the user of side-effects. click.echo( u"{0}: Your {1} now contains pinned versions, if your {2} did. \n"