From bd6e9eb65d409f78ecf14d6237b16326c1d2eaf4 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 30 Sep 2017 09:35:34 -0400 Subject: [PATCH] expected Signed-off-by: Kenneth Reitz --- pipenv/cli.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index 91eae110..b9d3f6e2 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -1244,8 +1244,9 @@ def do_init( if deploy: click.echo( crayons.red( - 'Your Pipfile.lock ({0}) is out of date. Aborting deploy.'.format( - old_hash + 'Your Pipfile.lock ({0}) is out of date. Expected: ({1}). Aborting deploy.'.format( + old_hash, + new_hash ) ) )