Merge pull request #72 from lgov/master

* msgpack/exceptions.py: Fix typo in error message.
This commit is contained in:
INADA Naoki 2013-09-13 05:15:36 -07:00
commit f45d7b4e2d

View file

@ -20,7 +20,7 @@ class ExtraData(ValueError):
self.extra = extra
def __str__(self):
return "unpack(b) recieved extra data."
return "unpack(b) received extra data."
class PackException(Exception):
pass