From 0de4d3e3eb348d9bfc6df1d7c0651b309306863c Mon Sep 17 00:00:00 2001 From: R David Murray Date: Sun, 3 Nov 2013 12:23:23 -0500 Subject: #19485: clarify get_param example. Patch by Vajrasky Kok. --- 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 5020a03..f43a380 100644 --- a/Lib/email/message.py +++ b/Lib/email/message.py @@ -636,7 +636,7 @@ class Message: If your application doesn't care whether the parameter was RFC 2231 encoded, it can turn the return value into a string as follows: - param = msg.get_param('foo') + rawparam = msg.get_param('foo') param = email.utils.collapse_rfc2231_value(rawparam) """ -- cgit v0.12