Blob Blame History Raw
Patch by Robert Scheck <robert@fedoraproject.org> to get duplicity >= 0.4.11 building with
older Python 2.3 again. This release done by Kenneth Loafman <kenneth@loafman.com> luckily
got Python 2.3 support back.

--- duplicity-0.4.11/setup.py				2008-05-05 16:40:53.000000000 +0200
+++ duplicity-0.4.11/setup.py.python23			2008-05-05 21:45:35.000000000 +0200
@@ -5,8 +5,8 @@
 
 version_string = "0.4.11"
 
-if sys.version_info[:2] < (2,4):
-	print "Sorry, duplicity requires version 2.4 or later of python"
+if sys.version_info[:2] < (2,3):
+	print "Sorry, duplicity requires version 2.3 or later of python"
 	sys.exit(1)
 
 try: