diff options
| author | Lieven Govaerts <lgo@mobsol.be> | 2013-09-13 13:47:13 +0200 |
|---|---|---|
| committer | Lieven Govaerts <lgo@mobsol.be> | 2013-09-13 13:47:13 +0200 |
| commit | 12f87147b5e2c1ffadc9fed51dca35d940038798 (patch) | |
| tree | 951b3ec2bcbf1409d047685a3758125bb7cd18c0 /msgpack | |
| parent | 2f6061cb4fa47efba022768d83ed6750030eec22 (diff) | |
| download | msgpack-python-12f87147b5e2c1ffadc9fed51dca35d940038798.tar.gz | |
* msgpack/exceptions.py: Fix typo in error message.
Diffstat (limited to 'msgpack')
| -rw-r--r-- | msgpack/exceptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/msgpack/exceptions.py b/msgpack/exceptions.py index 2565541..f7678f1 100644 --- a/msgpack/exceptions.py +++ b/msgpack/exceptions.py @@ -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 |
