Skip to content

Commit

Permalink
BUGLET: Need "\\n" in string template.
Browse files Browse the repository at this point in the history
  • Loading branch information
charris committed Sep 24, 2010
1 parent 50479e9 commit 3466789
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions numpy/f2py/setup.py
Expand Up @@ -62,7 +62,7 @@ def generate_f2py_py(build_dir):
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
Expand All @@ -72,7 +72,7 @@ def generate_f2py_py(build_dir):
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)))
Expand Down

0 comments on commit 3466789

Please sign in to comment.