diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2011-04-26 17:33:06 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2011-04-26 17:33:06 -0600 |
commit | 433b02a909c6ada47c721088d1fc6df67bab8ac8 (patch) | |
tree | d5d1f67cd427d29dffee8150de15d578d285d8ef /numpy/__init__.py | |
parent | a994cf3ea84a7a29d46f30dbbc3f2b5245926d5e (diff) | |
download | numpy-433b02a909c6ada47c721088d1fc6df67bab8ac8.tar.gz |
ENH: Put line ending on message to stderr.
Diffstat (limited to 'numpy/__init__.py')
-rw-r--r-- | numpy/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py index f2ffdf92c..0b5357632 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -115,7 +115,7 @@ except NameError: if __NUMPY_SETUP__: import sys as _sys - _sys.stderr.write('Running from numpy source directory.') + _sys.stderr.write('Running from numpy source directory.\n') del _sys else: try: |