mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-26 22:13:32 -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
|
||||
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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue