summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorINADA Naoki <songofacandy@gmail.com>2013-09-13 05:15:36 -0700
committerINADA Naoki <songofacandy@gmail.com>2013-09-13 05:15:36 -0700
commitf45d7b4e2d362222698b755444ffb61f1cf74b02 (patch)
tree951b3ec2bcbf1409d047685a3758125bb7cd18c0
parent2f6061cb4fa47efba022768d83ed6750030eec22 (diff)
parent12f87147b5e2c1ffadc9fed51dca35d940038798 (diff)
downloadmsgpack-python-f45d7b4e2d362222698b755444ffb61f1cf74b02.tar.gz
Merge pull request #72 from lgov/master
* msgpack/exceptions.py: Fix typo in error message.
-rw-r--r--msgpack/exceptions.py2
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