Skip to content

Commit 037b9d8

Browse files
committed
Fix typo in warning
1 parent 47d139b commit 037b9d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/sas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ def _read_header(self):
330330
field['ntype'] = types[field['ntype']]
331331
fl = field['field_length']
332332
if field['ntype'] == 'numeric' and ((fl < 2) or (fl > 8)):
333-
raise TypeError("Floating point field width %d is nt between 2 and 8." % fw)
333+
raise TypeError("Floating point field width %d is not between 2 and 8." % fw)
334334

335335
for k, v in field.items():
336336
try:

0 commit comments

Comments
 (0)