diff --git a/bin/steps/python b/bin/steps/python index f43084471d8c7dff436e6a568f1848f86b2f2b01..8c78d8a6d5be5794366e7ecd326f090c8e193a36 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. You are using $PYTHON_VERSION. 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 the latest 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. You are using $PYTHON_VERSION. 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 the latest version." echo " Learn More: https://devcenter.heroku.com/articles/python-runtimes" fi