summaryrefslogtreecommitdiff
path: root/numpy/distutils/exec_command.py
diff options
context:
space:
mode:
authorArnaud Bergeron <abergeron@gmail.com>2014-02-27 14:04:36 -0500
committerArnaud Bergeron <abergeron@gmail.com>2014-02-27 14:08:51 -0500
commitc2afa6213880733ee705aa847755b539ca62fb73 (patch)
tree5e5960af8df4e340804e2e61b7f45cc8356275d9 /numpy/distutils/exec_command.py
parent8c4d9bedd9d85d86c41f956cdb5140e112c2ac08 (diff)
downloadnumpy-c2afa6213880733ee705aa847755b539ca62fb73.tar.gz
ENH: Make output of get_atlas_info conditional on system_info.verbosity
Diffstat (limited to 'numpy/distutils/exec_command.py')
-rw-r--r--numpy/distutils/exec_command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/exec_command.py b/numpy/distutils/exec_command.py
index 648a98efb..baf81f337 100644
--- a/numpy/distutils/exec_command.py
+++ b/numpy/distutils/exec_command.py
@@ -120,7 +120,7 @@ def find_executable(exe, path=None, _cache={}):
if not os.path.islink(f_ext):
f_ext = realpath(f_ext)
if os.path.isfile(f_ext) and os.access(f_ext, os.X_OK):
- log.good('Found executable %s' % f_ext)
+ log.info('Found executable %s' % f_ext)
_cache[key] = f_ext
return f_ext