def getArch(self): bits = platform.architecture()[0] # Need to work with arm - ticket #103 if bits == "64bit": return "x86_64" else: return "i686"