Python 2.6 fix for Mac OS

This commit is contained in:
Todd Gamblin 2014-11-08 22:18:08 -08:00
parent 1da5d12bdd
commit 1a424c124c

View File

@ -65,7 +65,7 @@ def get_mac_sys_type():
if not mac_ver:
return None
return "macosx_{}_{}".format(
return "macosx_%s_%s" % (
Version(mac_ver).up_to(2), py_platform.machine())