Add parenthesis for `print` to make it Python 3 compatible

pull/61/head
Sumin Byeon 9 years ago
parent aeb4f4c782
commit 68be580610

@ -8,7 +8,7 @@ if sys.platform == 'darwin':
mac_ver = platform.mac_ver()[0]
mac_ver_no = int(mac_ver.split('.')[1])
if mac_ver_no < 9:
print "Using lxml<2.4"
print("Using lxml<2.4")
lxml_requirement = "lxml<2.4"
setup(

Loading…
Cancel
Save