From 4e149225c8a19904855734ebe75321beb1b80ff0 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Mon, 1 Feb 2016 16:17:19 -0800 Subject: [PATCH] Remove need for --debug in py26 with old le-auto --- letsencrypt-auto | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/letsencrypt-auto b/letsencrypt-auto index 20465dbb1..2b956aaf5 100755 --- a/letsencrypt-auto +++ b/letsencrypt-auto @@ -101,9 +101,7 @@ DeterminePythonVersion() { fi PYVER=`$LE_PYTHON --version 2>&1 | cut -d" " -f 2 | cut -d. -f1,2 | sed 's/\.//'` - if [ $PYVER -eq 26 ] ; then - ExperimentalBootstrap "Python 2.6" - elif [ $PYVER -lt 26 ] ; then + if [ $PYVER -lt 26 ] ; then echo "You have an ancient version of Python entombed in your operating system..." echo "This isn't going to work; you'll need at least version 2.6." exit 1