From: Rav3nPL Date: Sun, 9 Dec 2012 14:35:13 +0000 (+0100) Subject: Update setup.py X-Git-Tag: 10.0~17^2 X-Git-Url: https://git.novaco.in/?p=p2pool.git;a=commitdiff_plain;h=dc9291706868682f769cf1aef006a5e48c294233 Update setup.py fix for win64 detection - platform.architecture() returns table --- 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')