summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2010-02-07 20:45:59 +0000
committerCharles Harris <charlesr.harris@gmail.com>2010-02-07 20:45:59 +0000
commit38ad6b18648d2b7ddf2c1d1cf978cd0d3e7b6771 (patch)
tree386ffe55be341d20b52580d5f805e7fa30c1669f
parentaeaeff01014b1b512308427c869b16d02b166675 (diff)
downloadnumpy-38ad6b18648d2b7ddf2c1d1cf978cd0d3e7b6771.tar.gz
BUG: Backport r8087.
-rw-r--r--numpy/distutils/fcompiler/gnu.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/fcompiler/gnu.py b/numpy/distutils/fcompiler/gnu.py
index ac9fc08fa..f22cdea43 100644
--- a/numpy/distutils/fcompiler/gnu.py
+++ b/numpy/distutils/fcompiler/gnu.py
@@ -302,8 +302,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):