summaryrefslogtreecommitdiff
path: root/python/qpid/codec.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/qpid/codec.py')
-rw-r--r--python/qpid/codec.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qpid/codec.py b/python/qpid/codec.py
index ae113619ae..c1a912f5d0 100644
--- a/python/qpid/codec.py
+++ b/python/qpid/codec.py
@@ -53,7 +53,7 @@ class Codec:
def read(self, n):
"""
- reads in 'n' bytes from the stream. Can raise EFO exception
+ reads in 'n' bytes from the stream. Can raise EOF exception
"""
data = self.stream.read(n)
if n > 0 and len(data) == 0: