Skip to content

Commit

Permalink
Merge pull request python-excel#18 from holm/master
Browse files Browse the repository at this point in the history
Correct typo in error class
  • Loading branch information
cjw296 committed Oct 7, 2012
2 parents fc6131b + 9b4aee9 commit 9d87bf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xlrd/sheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -1501,7 +1501,7 @@ def string_record_contents(self, data):
if nchars_found > nchars_expected:
msg = ("STRING/CONTINUE: expected %d chars, found %d"
% (nchars_expected, nchars_found))
raise XLRDErrror(msg)
raise XLRDError(msg)
rc, _unused_len, data = bk.get_record_parts()
if rc != XL_CONTINUE:
raise XLRDError(
Expand Down

0 comments on commit 9d87bf4

Please sign in to comment.