diff options
author | Travis Oliphant <oliphant@enthought.com> | 2010-02-04 15:07:51 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2010-02-04 15:07:51 +0000 |
commit | 49c5dc14aba8a4dc30e6261679022e6f89381df4 (patch) | |
tree | 91f26eb99c9e162e89c339163d34e0ed73863edd /numpy/distutils | |
parent | fd4618b62ef4f036f6c4c45b7ecf089d714ed9d5 (diff) | |
download | numpy-49c5dc14aba8a4dc30e6261679022e6f89381df4.tar.gz |
BUG: Fix #1376, indentation problem.
Diffstat (limited to 'numpy/distutils')
-rw-r--r-- | numpy/distutils/fcompiler/gnu.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/fcompiler/gnu.py b/numpy/distutils/fcompiler/gnu.py index cc9e1e7cb..b4bcded26 100644 --- a/numpy/distutils/fcompiler/gnu.py +++ b/numpy/distutils/fcompiler/gnu.py @@ -304,8 +304,8 @@ class Gnu95FCompiler(GnuFCompiler): c_compiler = self.c_compiler if c_compiler and c_compiler.compiler_type == "msvc": return [] - else: - raise NotImplementedError("Only MS compiler supported with gfortran on win64") + else: + raise NotImplementedError("Only MS compiler supported with gfortran on win64") return opt def get_target(self): |