diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2007-08-09 10:01:56 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2007-08-09 10:01:56 +0000 |
commit | 907a90f4c28fe811d878abe66ae375a757c9ece3 (patch) | |
tree | 08621bbfd54eb1a13142c45a5bab5b1610776fad /numpy/distutils/exec_command.py | |
parent | 5da18aa76edac59ce485ff9bc03620b76118ddeb (diff) | |
download | numpy-907a90f4c28fe811d878abe66ae375a757c9ece3.tar.gz |
Fix an incorrect usage of log.set_verbosity(INFO) causing log always to be at DEBUG level, INFO is for set_threshold.
Diffstat (limited to 'numpy/distutils/exec_command.py')
-rw-r--r-- | numpy/distutils/exec_command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/exec_command.py b/numpy/distutils/exec_command.py index 034dd307a..edd554d92 100644 --- a/numpy/distutils/exec_command.py +++ b/numpy/distutils/exec_command.py @@ -196,7 +196,7 @@ def exec_command( command, The following special keyword arguments can be used: use_shell - execute `sh -c command` use_tee - pipe the output of command through tee - execute_in - before command `cd execute_in` and after `cd -`. + execute_in - before run command `cd execute_in` and after `cd -`. On NT, DOS systems the returned status is correct for external commands. Wild cards will not work for non-posix systems or when use_shell=0. |