diff options
author | cgohlke <cgohlke@uci.edu> | 2012-09-16 16:05:52 -0700 |
---|---|---|
committer | cgohlke <cgohlke@uci.edu> | 2012-09-16 16:05:52 -0700 |
commit | 44381b83edccdd747643323b7f592c96e1f002ba (patch) | |
tree | afeae3542363687f0be7ed7b25563c1873c36669 /numpy/distutils | |
parent | d8988abc295ef2d6cf1e3a5ffb0d766ebd4cd3a8 (diff) | |
download | numpy-44381b83edccdd747643323b7f592c96e1f002ba.tar.gz |
Fix whitespace formatting
Use spaces instead of tabs
Diffstat (limited to 'numpy/distutils')
-rw-r--r-- | numpy/distutils/fcompiler/gnu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/gnu.py b/numpy/distutils/fcompiler/gnu.py index 49df885b6..bb832991f 100644 --- a/numpy/distutils/fcompiler/gnu.py +++ b/numpy/distutils/fcompiler/gnu.py @@ -251,7 +251,7 @@ class Gnu95FCompiler(GnuFCompiler): executables = { 'version_cmd' : ["<F90>", "--version"], 'compiler_f77' : [None, "-Wall", "-ffixed-form", - "-fno-second-underscore"] + _EXTRAFLAGS, + "-fno-second-underscore"] + _EXTRAFLAGS, 'compiler_f90' : [None, "-Wall", "-fno-second-underscore"] + _EXTRAFLAGS, 'compiler_fix' : [None, "-Wall", "-ffixed-form", "-fno-second-underscore"] + _EXTRAFLAGS, |