diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2006-04-08 18:33:04 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2006-04-08 18:33:04 +0000 |
commit | a8e674757141889f3609890a1d89a8634abc98bb (patch) | |
tree | 68618ec69a8fb0c11df3ebc1ae50110f1797c99d /numpy/distutils/command/build_clib.py | |
parent | 6932d858cf4701106a7cedf0edce70c34bf75925 (diff) | |
download | numpy-a8e674757141889f3609890a1d89a8634abc98bb.tar.gz |
Fixed typo.
Diffstat (limited to 'numpy/distutils/command/build_clib.py')
-rw-r--r-- | numpy/distutils/command/build_clib.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/distutils/command/build_clib.py b/numpy/distutils/command/build_clib.py index 080f98aa1..3319c6a75 100644 --- a/numpy/distutils/command/build_clib.py +++ b/numpy/distutils/command/build_clib.py @@ -120,7 +120,8 @@ class build_clib(old_build_clib): config_fc = build_info.get('config_fc',{}) if fcompiler is not None and config_fc: - log.info('using setup script specified config_fc for fortran compiler: %s' \ + log.info('using setup script specified config_fc '\ + 'for fortran compiler: %s' \ % (config_fc)) from numpy.distutils.fcompiler import new_fcompiler fcompiler = new_fcompiler(compiler=self.fcompiler.compiler_type, |