From: david-sarah <david-sarah@jacaranda.org>
Date: Mon, 11 Jun 2012 03:52:16 +0000 (+0000)
Subject: setup.py and bin/tahoe-script.template: the error when we try to use Python 3 should... 
X-Git-Url: https://git.rkrishnan.org/vdrive/listings/frontends?a=commitdiff_plain;h=b82cddef7b7f5eeed867001cd605431e1e18f9e9;p=tahoe-lafs%2Ftahoe-lafs.git

setup.py and bin/tahoe-script.template: the error when we try to use Python 3 should give the correct minimum Python version (now 2.5). refs #1658
---

diff --git a/bin/tahoe-script.template b/bin/tahoe-script.template
index ba192e54..5f144b22 100644
--- a/bin/tahoe-script.template
+++ b/bin/tahoe-script.template
@@ -1,5 +1,5 @@
 #!/bin/false # You must specify a python interpreter.
-u"Tahoe-LAFS does not run under Python 3. Please use a version of Python between 2.4.4 and 2.7.x inclusive."
+u"Tahoe-LAFS does not run under Python 3. Please use a version of Python between 2.5 and 2.7.x inclusive."
 
 import sys, os, subprocess
 
diff --git a/setup.py b/setup.py
index 75f83ea6..bbb662df 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
 #! /usr/bin/env python
 # -*- coding: utf-8 -*-
-u"Tahoe-LAFS does not run under Python 3. Please use a version of Python between 2.4.4 and 2.7.x inclusive."
+u"Tahoe-LAFS does not run under Python 3. Please use a version of Python between 2.5 and 2.7.x inclusive."
 
 # Tahoe-LAFS -- secure, distributed storage grid
 #