summaryrefslogtreecommitdiff
path: root/numpy/matlib.py
diff options
context:
space:
mode:
authorJarrod Millman <millman@berkeley.edu>2007-10-29 14:58:18 +0000
committerJarrod Millman <millman@berkeley.edu>2007-10-29 14:58:18 +0000
commit0b77f0e5f0e46b2ef7c570ebda046c34bbcc0f26 (patch)
treec7609a2a685fd5bff235d812b8c5705621216f4c /numpy/matlib.py
parentaa3c27cce3d0625f719b812c9e6b0aa73114c612 (diff)
downloadnumpy-0b77f0e5f0e46b2ef7c570ebda046c34bbcc0f26.tar.gz
ran reindent.py to clean up whitespace
Diffstat (limited to 'numpy/matlib.py')
-rw-r--r--numpy/matlib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/matlib.py b/numpy/matlib.py
index 413a45ee2..cfc61f4f6 100644
--- a/numpy/matlib.py
+++ b/numpy/matlib.py
@@ -45,7 +45,7 @@ def rand(*args):
def randn(*args):
if isinstance(args[0], tuple):
- args = args[0]
+ args = args[0]
return asmatrix(N.random.randn(*args))
def repmat(a, m, n):