From 479c2a0cc14e0e4cb62ff07367c17efcd9b9b74a Mon Sep 17 00:00:00 2001
From: Fergus Leen <leenf@tcd.ie>
Date: Sun, 15 Jun 2014 08:32:06 +0100
Subject: [PATCH] Added str around sys.maxsize

---
 scripts/devSetup/systemConfiguration.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/scripts/devSetup/systemConfiguration.py b/scripts/devSetup/systemConfiguration.py
index 9d49e95ce..c8b2b99de 100644
--- a/scripts/devSetup/systemConfiguration.py
+++ b/scripts/devSetup/systemConfiguration.py
@@ -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
-