Hi!
I'm trying meld-3.11.0. It doesn't say anything about supported python
versions.
When I try running setup.py build with python-3.x, it stumbles over a
print statement.
Traceback (most recent call last):
File "setup.py", line 6, in <module>
import meld.build_helpers
File "path/to/meld-3.11.0/meld/build_helpers.py", line 138
print "Skipping missing file", page_path
The attached patch fixes this. If you want to be on the safe side, you
can add a "from __future__ import print_function" to build_helpers.py.
Does meld-3.11.0 officially support python-3.x?
Thomas
$NetBSD: patch-meld_build__helpers.py,v 1.1 2014/02/24 12:24:11 wiz Exp $
--- meld/build_helpers.py.orig 2014-02-22 20:41:47.000000000 +0000
+++ meld/build_helpers.py
@@ -135,7 +135,7 @@ class build_help(distutils.cmd.Command):
for page in pages:
page_path = os.path.join(build_path, page)
if not os.path.exists(page_path):
- print "Skipping missing file", page_path
+ print ("Skipping missing file", page_path)
continue
lint = ['xmllint', '--noout', '--noent', '--path', build_path,
'--xinclude', page_path]
_______________________________________________
meld-list mailing list
[email protected]
https://mail.gnome.org/mailman/listinfo/meld-list