diff options
-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 14fd2a8..3a02224 100644 --- a/Lib/rfc822.py +++ b/Lib/rfc822.py @@ -74,7 +74,7 @@ class Message: # (and then assume seek() works, too) try: fp.tell() - except: + except (AttributeError, IOError): seekable = 0 else: seekable = 1 |