Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
fix for win64 detection - platform.architecture() returns table
  • Loading branch information
Rav3nPL committed Dec 9, 2012
1 parent 8bc9cd4 commit dc92917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -8,7 +8,7 @@
import py2exe import py2exe


version = __import__('p2pool').__version__ version = __import__('p2pool').__version__
im64 = '64' in platform.architecture() im64 = '64' in platform.architecture()[0]


if os.path.exists('INITBAK'): if os.path.exists('INITBAK'):
os.remove('INITBAK') os.remove('INITBAK')
Expand Down

0 comments on commit dc92917

Please sign in to comment.