From cf807eaf60c4b7ae7eee4ac0d9b8ba4e152462a0 Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Tue, 1 Dec 2015 18:22:05 -0800 Subject: [PATCH] Make the ancient python error more friendly --- letsencrypt-auto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt-auto b/letsencrypt-auto index e9b7739d2..c88028b72 100755 --- a/letsencrypt-auto +++ b/letsencrypt-auto @@ -104,7 +104,7 @@ DeterminePythonVersion() { ExperimentalBootstrap "Python 2.6" elif [ $PYVER -lt 26 ] ; then echo "You have an ancient version of Python entombed in your operating system..." - echo "This isn't going to work." + echo "This isn't going to work; you'll need at least version 2.6." exit 1 fi }