diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-07-16 21:35:23 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-07-16 21:35:23 (GMT) |
commit | c411dbaeee29dba87d5432a92fe76ea65d8e25f0 (patch) | |
tree | 45b71b45b9b5c2f2ddc1b644166208cd041f076c /Lib/rfc822.py | |
parent | 8531b1b28de5356f1154e13704d499121ea72af8 (diff) | |
download | cpython-c411dbaeee29dba87d5432a92fe76ea65d8e25f0.zip cpython-c411dbaeee29dba87d5432a92fe76ea65d8e25f0.tar.gz cpython-c411dbaeee29dba87d5432a92fe76ea65d8e25f0.tar.bz2 |
Whitespace normalization.
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 4b12c4b..3d9e13f 100644 --- a/Lib/rfc822.py +++ b/Lib/rfc822.py @@ -443,7 +443,7 @@ class Message: def __contains__(self, name): """Determine whether a message contains the named header.""" - return name.lower() in self.dict + return name.lower() in self.dict def keys(self): """Get all of a message's header field names.""" |