summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorJarrod Millman <millman@berkeley.edu>2009-01-09 19:37:16 +0000
committerJarrod Millman <millman@berkeley.edu>2009-01-09 19:37:16 +0000
commitfbf902ca2bf3f119b4d7b77833e4a3bc70c5101e (patch)
tree1db499618394f2c038ad32cd58a8889948831bb4 /numpy
parentaef4882cdd0245cd2bb5d1787d697e7a37cd7b3a (diff)
downloadnumpy-fbf902ca2bf3f119b4d7b77833e4a3bc70c5101e.tar.gz
can't use append an int to a string
Diffstat (limited to 'numpy')
-rw-r--r--numpy/distutils/system_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py
index 207780210..7b0317637 100644
--- a/numpy/distutils/system_info.py
+++ b/numpy/distutils/system_info.py
@@ -167,7 +167,7 @@ def libpaths(paths,bits):
# Handle 64bit case
out = []
for p in paths:
- out.extend([p+bits, p])
+ out.extend([p+'64', p])
return out