diff options
Diffstat (limited to 'Lib/rfc822.py')
-rw-r--r-- | Lib/rfc822.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/rfc822.py b/Lib/rfc822.py index c4b7d37..1ad2d01 100644 --- a/Lib/rfc822.py +++ b/Lib/rfc822.py @@ -112,7 +112,7 @@ class Message: def rewindbody(self): """Rewind the file to the start of the body (if seekable).""" if not self.seekable: - raise IOError, "unseekable file" + raise IOError("unseekable file") self.fp.seek(self.startofbody) def readheaders(self): |