diff options
author | Matti Picus <matti.picus@gmail.com> | 2016-09-29 21:47:29 +0300 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2016-10-01 19:21:26 +0300 |
commit | 2f9f10a5ab1bc863d276a5155cc74af9e3916e72 (patch) | |
tree | ff67d144cb55e7eb9792a4118ecb1a8312908b2a /numpy | |
parent | 2f1a5b9801c380a0e85760fcd76fc70b03312337 (diff) | |
download | numpy-2f9f10a5ab1bc863d276a5155cc74af9e3916e72.tar.gz |
ENH: remove stray comma that made the msg a tuple
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/linalg/linalg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/linalg.py b/numpy/linalg/linalg.py index 3576d3824..37c85f6a6 100644 --- a/numpy/linalg/linalg.py +++ b/numpy/linalg/linalg.py @@ -741,7 +741,7 @@ def qr(a, mode='reduced'): mode = 'reduced' elif mode in ('e', 'economic'): # 2013-04-01, 1.8 - msg = "The 'economic' option is deprecated.", + msg = "The 'economic' option is deprecated." warnings.warn(msg, DeprecationWarning, stacklevel=2) mode = 'economic' else: |