diff options
author | Matti Picus <matti.picus@gmail.com> | 2021-07-12 09:36:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-12 09:36:32 +0300 |
commit | 38c61b6f33d32b6f394b0a309c93c78cadab7e07 (patch) | |
tree | 47bcb61a46b055ad2618dc1df108784f154bb53c | |
parent | 24da330a49266b86c887bb4f859a51c9ec1ffc82 (diff) | |
download | numpy-38c61b6f33d32b6f394b0a309c93c78cadab7e07.tar.gz |
BUG: typo
-rw-r--r-- | tools/openblas_support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/openblas_support.py b/tools/openblas_support.py index 3c494fd96..7f32db578 100644 --- a/tools/openblas_support.py +++ b/tools/openblas_support.py @@ -151,7 +151,7 @@ def unpack_windows_zip(fname): 'in downloaded zipfile' % OPENBLAS_LONG if get_ilp64() is None: target = os.path.join(gettempdir(), 'openblas.a') - else + else: target = os.path.join(gettempdir(), 'openblas64_.a') with open(target, 'wb') as fid: fid.write(zf.read(lib[0])) |