diff options
author | William Grzybowski <wg@FreeBSD.org> | 2013-11-02 23:00:53 +0000 |
---|---|---|
committer | William Grzybowski <wg@FreeBSD.org> | 2013-11-02 23:00:53 +0000 |
commit | 05ca77bc933651fa865f0ddcc2f4e9987cb92650 (patch) | |
tree | 545ae90e5b6918f8ea41d097186d46da653a17ce /sysutils/duplicity/files/patch-setup.py | |
parent | www/mediawiki120: add missing php hash dependency (diff) |
sysutils/duplicity: fix for python 3.x
PR: ports/182765
Submitted by: Kurt Jaeger <fbsd-ports opsec.eu>
Approved by: maintainer (timeout)
Notes
Notes:
svn path=/head/; revision=332550
Diffstat (limited to '')
-rw-r--r-- | sysutils/duplicity/files/patch-setup.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sysutils/duplicity/files/patch-setup.py b/sysutils/duplicity/files/patch-setup.py index 3a86163122d2..d128a8724631 100644 --- a/sysutils/duplicity/files/patch-setup.py +++ b/sysutils/duplicity/files/patch-setup.py @@ -1,6 +1,12 @@ ---- setup.py.orig 2011-11-25 23:58:57.147597966 +0000 -+++ setup.py 2011-11-26 00:00:43.169721395 +0000 -@@ -31,6 +31,10 @@ +--- setup.py.orig 2013-08-22 15:30:09.000000000 +0200 ++++ setup.py 2013-10-06 19:43:39.000000000 +0200 +@@ -26,11 +26,15 @@ + version_string = "0.6.22" + + if sys.version_info[:2] < (2,4): +- print "Sorry, duplicity requires version 2.4 or later of python" ++ print("Sorry, duplicity requires version 2.4 or later of python") + sys.exit(1) incdir_list = libdir_list = None |