From 12f87147b5e2c1ffadc9fed51dca35d940038798 Mon Sep 17 00:00:00 2001 From: Lieven Govaerts Date: Fri, 13 Sep 2013 13:47:13 +0200 Subject: * msgpack/exceptions.py: Fix typo in error message. --- msgpack/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'msgpack/exceptions.py') 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 -- cgit v1.2.1