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 | |
parent | 6932d858cf4701106a7cedf0edce70c34bf75925 (diff) | |
download | numpy-a8e674757141889f3609890a1d89a8634abc98bb.tar.gz |
Fixed typo.
-rw-r--r-- | numpy/distutils/command/build_clib.py | 3 | ||||
-rw-r--r-- | numpy/distutils/fcompiler/__init__.py | 2 |
2 files changed, 3 insertions, 2 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, diff --git a/numpy/distutils/fcompiler/__init__.py b/numpy/distutils/fcompiler/__init__.py index 9b15f3c67..099581acb 100644 --- a/numpy/distutils/fcompiler/__init__.py +++ b/numpy/distutils/fcompiler/__init__.py @@ -250,7 +250,7 @@ class FCompiler(CCompiler): dist.cmdclass['config_fc'] = config_fc dist.parse_config_files() dist.parse_command_line() - elif isinstance(dist,Distribution): + if isinstance(dist,Distribution): conf = dist.get_option_dict('config_fc') else: assert isinstance(dist,dict) |