diff options
author | David Cournapeau <cournape@gmail.com> | 2008-10-03 07:21:31 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-10-03 07:21:31 +0000 |
commit | 27f4075d264ef01d17f328e643d48782f673c53c (patch) | |
tree | 2af4fb4750674901aa0ca03df32ea04f79eff8f0 /numpy | |
parent | 48a01ee3a7b9a80a65db254113397fd0a6a7d8aa (diff) | |
download | numpy-27f4075d264ef01d17f328e643d48782f673c53c.tar.gz |
Fix typo in check_funcs.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/SConscript b/numpy/core/SConscript index d8531ce1b..d7a1cd608 100644 --- a/numpy/core/SConscript +++ b/numpy/core/SConscript @@ -148,7 +148,7 @@ if not config.CheckFuncsAtOnce(mandatory_funcs): def check_funcs(funcs): # Use check_funcs_once first, and if it does not work, test func per # func. Return success only if all the functions are available - st = config.CheckFuncsAtOnce(func) + st = config.CheckFuncsAtOnce(funcs) if not st: # Global check failed, check func per func for f in funcs: |