diff options
author | Collin Winter <collinw@gmail.com> | 2007-08-30 01:19:48 +0000 |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-08-30 01:19:48 +0000 |
commit | ce36ad8a467d914eb5c91f33835b9eaea18ee93b (patch) | |
tree | 05bf654f3359e20b455dc300bd860bba5d291c8d /Lib/rfc822.py | |
parent | 8b3febef2f96c35e9aad9db2ef499db040fdefae (diff) | |
download | cpython-git-ce36ad8a467d914eb5c91f33835b9eaea18ee93b.tar.gz |
Raise statement normalization in Lib/.
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 c4b7d373b0..1ad2d010d6 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): |