summaryrefslogtreecommitdiff
path: root/scipy_distutils/exec_command.py
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2004-02-13 23:25:43 +0000
committerPearu Peterson <pearu.peterson@gmail.com>2004-02-13 23:25:43 +0000
commit68569c20c5a8775e4ce0a01260d11e8d28753822 (patch)
tree6646ca7c132c68311df4a7a8373fb5bf62cbcef2 /scipy_distutils/exec_command.py
parent3317087bc3f28aaebc5e796346e306cbb1828b43 (diff)
downloadnumpy-68569c20c5a8775e4ce0a01260d11e8d28753822.tar.gz
Using new.instancemethod to override distutils internal methods - this is very robust that avoids using nasty import hacks.
Diffstat (limited to 'scipy_distutils/exec_command.py')
-rw-r--r--scipy_distutils/exec_command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy_distutils/exec_command.py b/scipy_distutils/exec_command.py
index b2fd0e05c..54d47fecd 100644
--- a/scipy_distutils/exec_command.py
+++ b/scipy_distutils/exec_command.py
@@ -115,7 +115,7 @@ def test_splitcmdline():
def find_executable(exe, path=None):
""" Return full path of a executable.
"""
- log.info('find_executable(%r)' % exe)
+ log.debug('find_executable(%r)' % exe)
if path is None:
path = os.environ.get('PATH',os.defpath)
suffices = ['']