8000 ENH: remove stray comma that made the msg a tuple · numpy/numpy@2f9f10a · GitHub
[go: up one dir, main page]

Skip to content < 10000 div data-target="react-partial.reactRoot">

Commit 2f9f10a

Browse files
committed
ENH: remove stray comma that made the msg a tuple
1 parent 2f1a5b9 commit 2f9f10a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numpy/linalg/linalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ def qr(a, mode='reduced'):
741741
mode = 'reduced'
742742
elif mode in ('e', 'economic'):
743743
# 2013-04-01, 1.8
744-
msg = "The 'economic' option is deprecated.",
744+
msg = "The 'economic' option is deprecated."
745745
warnings.warn(msg, DeprecationWarning, stacklevel=2)
746746
mode = 'economic'
747747
else:

0 commit comments

Comments
 (0)
0