diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2010-09-23 20:42:19 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2010-09-23 20:42:19 -0600 |
commit | 34667890e3927d79c5b716de9ecb17480198d9c1 (patch) | |
tree | bd9daa666c933ef4795f32956999185b2954f912 /numpy/f2py | |
parent | 50479e9a6f6d07e92fa2f16dbb8abfadf83c332d (diff) | |
download | numpy-34667890e3927d79c5b716de9ecb17480198d9c1.tar.gz |
BUGLET: Need "\\n" in string template.
Diffstat (limited to 'numpy/f2py')
-rw-r--r-- | numpy/f2py/setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/f2py/setup.py b/numpy/f2py/setup.py index aac3d33f5..37aab191c 100644 --- a/numpy/f2py/setup.py +++ b/numpy/f2py/setup.py @@ -62,7 +62,7 @@ for mode in ["g3-numpy", "2e-numeric", "2e-numarray", "2e-numpy"]: except ValueError: pass os.environ["NO_SCIPY_IMPORT"]="f2py" if mode=="g3-numpy": - sys.stderr.write("G3 f2py support is not implemented, yet.\n") + sys.stderr.write("G3 f2py support is not implemented, yet.\\n") sys.exit(1) elif mode=="2e-numeric": from f2py2e import main @@ -72,7 +72,7 @@ elif mode=="2e-numarray": elif mode=="2e-numpy": from numpy.f2py import main else: - sys.stderr.write("Unknown mode: " + repr(mode) + "\n") + sys.stderr.write("Unknown mode: " + repr(mode) + "\\n") sys.exit(1) main() '''%(os.path.basename(sys.executable))) |