From dc9291706868682f769cf1aef006a5e48c294233 Mon Sep 17 00:00:00 2001 From: Rav3nPL Date: Sun, 9 Dec 2012 15:35:13 +0100 Subject: [PATCH] Update setup.py fix for win64 detection - platform.architecture() returns table --- setup.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/setup.py b/setup.py index d8db77a..ea1d0bb 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ from distutils.core import setup import py2exe version = __import__('p2pool').__version__ -im64 = '64' in platform.architecture() +im64 = '64' in platform.architecture()[0] if os.path.exists('INITBAK'): os.remove('INITBAK') -- 1.7.1