From c5a6b23719227a38a2ab92ae224f3a98de05b6c3 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Tue, 28 Sep 2004 04:55:34 +0000 Subject: [PATCH] __getitem__(): Fix docstring, SF 979924. --- Lib/email/Message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/email/Message.py b/Lib/email/Message.py index aefa37f14f09..b5302d79b75c 100644 --- a/Lib/email/Message.py +++ b/Lib/email/Message.py @@ -298,7 +298,7 @@ class Message: Return None if the header is missing instead of raising an exception. Note that if the header appeared multiple times, exactly which - occurrance gets returned is undefined. Use getall() to get all + occurrance gets returned is undefined. Use get_all() to get all the values matching a header field name. """ return self.get(name) -- 2.47.3