From c05204d6b5ffb2416ff7a7d74120834c97088a2f Mon Sep 17 00:00:00 2001
From: Kenneth Reitz <me@kennethreitz.org>
Date: Tue, 26 Sep 2017 10:00:31 -0400
Subject: [PATCH] there we go

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
---
 bin/steps/python | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/steps/python b/bin/steps/python
index 0adcb2c2..f4308447 100755
--- a/bin/steps/python
+++ b/bin/steps/python
@@ -6,12 +6,12 @@ PYTHON_VERSION=$(cat runtime.txt)
 
 if [[ $PYTHON_VERSION =~ ^python-2 ]]; then
   if [[ "$PYTHON_VERSION" != "$LATEST_2" ]]; then
-    puts-warn "The latest version of Python 2 is $LATEST_2. We recommend upgrading by specifying this version."
+    puts-warn "The latest version of Python 2 is $LATEST_2. You are using $PYTHON_VERSION. We recommend upgrading by specifying this version."
     echo "    Learn More: https://devcenter.heroku.com/articles/python-runtimes"
   fi
 else
   if [[ "$PYTHON_VERSION" != "$LATEST_3" ]]; then
-    puts-warn "The latest version of Python 3 is $LATEST_3. We recommend upgrading by specifying this version."
+    puts-warn "The latest version of Python 3 is $LATEST_3. You are using $PYTHON_VERSION. We recommend upgrading by specifying this version."
     echo "    Learn More: https://devcenter.heroku.com/articles/python-runtimes"
   fi
 
-- 
GitLab