summaryrefslogtreecommitdiff
path: root/numpy/oldnumeric/matrix.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/oldnumeric/matrix.py')
-rw-r--r--numpy/oldnumeric/matrix.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/oldnumeric/matrix.py b/numpy/oldnumeric/matrix.py
index 4d04090b8..25dfe6302 100644
--- a/numpy/oldnumeric/matrix.py
+++ b/numpy/oldnumeric/matrix.py
@@ -40,7 +40,7 @@ def _convert_from_string(data):
newrow = []
for col in trow:
temp = col.split()
- newrow.extend(map(_eval,temp))
+ newrow.extend(map(_eval, temp))
if count == 0:
Ncols = len(newrow)
elif len(newrow) != Ncols: