* msgpack/exceptions.py: Fix typo in error message.

This commit is contained in:
Lieven Govaerts 2013-09-13 13:47:13 +02:00
parent 2f6061cb4f
commit 12f87147b5
1 changed files with 1 additions and 1 deletions

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