summaryrefslogtreecommitdiff
path: root/numpy/lib/npyio.py
diff options
context:
space:
mode:
authorYaron de Leeuw <jarondl@server.fake>2013-10-11 02:28:55 +0300
committerYaron de Leeuw <jarondl@server.fake>2013-10-11 02:28:55 +0300
commitcc0dc438617211981401048b1b17bc09b87b8ebd (patch)
tree3f4154cf0aecce2cfb38e3f5e13a8bf52e962b99 /numpy/lib/npyio.py
parent6c189917beef5b68c1caea49d5389690c54f8c61 (diff)
downloadnumpy-cc0dc438617211981401048b1b17bc09b87b8ebd.tar.gz
STY: pepe8 for npyio continued 2 (typo)
fixing one typo in npyio.py
Diffstat (limited to 'numpy/lib/npyio.py')
-rw-r--r--numpy/lib/npyio.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py
index 8053721f9..9e6989c77 100644
--- a/numpy/lib/npyio.py
+++ b/numpy/lib/npyio.py
@@ -1334,7 +1334,7 @@ def genfromtxt(fname, dtype=float, comments='#', delimiter=None,
fhd = iter(fname)
except TypeError:
raise TypeError(
- "fname mustbe a string, filehandle, or generator. "
+ "fname must be a string, filehandle, or generator. "
"(got %s instead)" % type(fname))
split_line = LineSplitter(delimiter=delimiter, comments=comments,