Added str around sys.maxsize

This commit is contained in:
Fergus Leen 2014-06-15 08:32:06 +01:00
parent 66e2805a9a
commit 479c2a0cc1

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