mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-05-04 18:03:45 -04:00
Added str around sys.maxsize
This commit is contained in:
parent
66e2805a9a
commit
479c2a0cc1
1 changed files with 1 additions and 2 deletions
|
@ -33,7 +33,6 @@ class SystemConfiguration(object):
|
||||||
return 64
|
return 64
|
||||||
else:
|
else:
|
||||||
if self.operating_system == u"mac":
|
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.")
|
u",\n which doesn't correspond with a 64-bit architecture.")
|
||||||
return 32
|
return 32
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue