diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2004-02-13 23:25:43 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2004-02-13 23:25:43 +0000 |
commit | 68569c20c5a8775e4ce0a01260d11e8d28753822 (patch) | |
tree | 6646ca7c132c68311df4a7a8373fb5bf62cbcef2 /scipy_distutils/exec_command.py | |
parent | 3317087bc3f28aaebc5e796346e306cbb1828b43 (diff) | |
download | numpy-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.py | 2 |
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 = [''] |