diff options
author | David Cournapeau <cournape@gmail.com> | 2009-02-20 13:30:20 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-02-20 13:30:20 +0000 |
commit | a271ac2e41aacab2903864cf371c4ba94cf4ec3f (patch) | |
tree | ecd9d8931945569609a2fc9577722a77c2678c84 /numpy/distutils/fcompiler/compaq.py | |
parent | f3c36fa117628c51a4a38c4912633bd3d7bd8028 (diff) | |
download | numpy-a271ac2e41aacab2903864cf371c4ba94cf4ec3f.tar.gz |
Unhelpful message for compaq fortran compiler.
Diffstat (limited to 'numpy/distutils/fcompiler/compaq.py')
-rw-r--r-- | numpy/distutils/fcompiler/compaq.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/compaq.py b/numpy/distutils/fcompiler/compaq.py index ebd1b7838..ca2595e83 100644 --- a/numpy/distutils/fcompiler/compaq.py +++ b/numpy/distutils/fcompiler/compaq.py @@ -79,7 +79,7 @@ class CompaqVisualFCompiler(FCompiler): m.initialize() ar_exe = m.lib except DistutilsPlatformError, msg: - print 'Ignoring "%s" (one should fix me in fcompiler/compaq.py)' % (msg) + pass except AttributeError, msg: if '_MSVCCompiler__root' in str(msg): print 'Ignoring "%s" (I think it is msvccompiler.py bug)' % (msg) |