Merge pull request #1162 from thgil/master

Added str to sys.maxsize
This commit is contained in:
Nick Winter 2014-06-16 10:55:37 -07:00
commit 021ce5660c

View file

@ -33,7 +33,6 @@ class SystemConfiguration(object):
return 64
else:
if self.operating_system == u"mac":
raise NotSupportedError(u"Your processor is determined to have a maxSize of" + sys.maxsize +
raise NotSupportedError(u"Your processor is determined to have a maxSize of" + str(sys.maxsize) +
u",\n which doesn't correspond with a 64-bit architecture.")
return 32