summaryrefslogtreecommitdiff
path: root/numpy/distutils/exec_command.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2014-03-18 14:53:51 -0600
committerCharles Harris <charlesr.harris@gmail.com>2014-03-18 14:53:51 -0600
commit8357e0ba2b301d03ec4f355d2619127007eb8c39 (patch)
tree88adf0bb14fd9093e14e53e8f39ddc43f9dfaea3 /numpy/distutils/exec_command.py
parent6b38cdd2c2543e3957a593c48628f1daf23d48a9 (diff)
parentc2afa6213880733ee705aa847755b539ca62fb73 (diff)
downloadnumpy-8357e0ba2b301d03ec4f355d2619127007eb8c39.tar.gz
Merge pull request #4387 from abergeron/get_info
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