From 6fe93c9b9e6b407a1c3964a447019965f699715f Mon Sep 17 00:00:00 2001
From: Kenneth Reitz <me@kennethreitz.org>
Date: Tue, 26 Sep 2017 10:07:59 -0400
Subject: [PATCH] be more specific

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 6f29296f..798d4b19 100755
--- a/bin/steps/python
+++ b/bin/steps/python
@@ -7,13 +7,13 @@ 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 (you are using $PYTHON_VERSION, which is unsupported)."
-    puts-warn "We recommend upgrading by specifying the latest version."
+    puts-warn "We recommend upgrading by specifying the latest version ($LATEST_2)."
     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 (you are using $PYTHON_VERSION, which is unsupported)."
-    puts-warn "We recommend upgrading by specifying the latest version."
+    puts-warn "We recommend upgrading by specifying the latest version ($LATEST_3)."
     echo "       Learn More: https://devcenter.heroku.com/articles/python-runtimes"
   fi
 
-- 
GitLab