missing from __future__ import print_function in setup.py python3: sum() can't sum bytes, using b''.join(seq) instead
diff --git a/setup.py b/setup.py index f00661e..4de9e07 100755 --- a/setup.py +++ b/setup.py
@@ -1,5 +1,6 @@ #! /usr/bin/env python +from __future__ import print_function import os, sys from distutils.core import setup, Extension from distutils.command.build_ext import build_ext @@ -13,8 +14,8 @@ try: import xml.parsers.expat except ImportError: - print "*** Warning: FontTools needs PyXML, see:" - print " http://sourceforge.net/projects/pyxml/" + print("*** Warning: FontTools needs PyXML, see:") + print(" http://sourceforge.net/projects/pyxml/") class build_ext_optional(build_ext):