From: R David Murray Date: Sun, 3 Nov 2013 17:23:23 +0000 (-0500) Subject: #19485: clarify get_param example. X-Git-Tag: v3.4.0b1~411^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0de4d3e3eb348d9bfc6df1d7c0651b309306863c;p=thirdparty%2FPython%2Fcpython.git #19485: clarify get_param example. Patch by Vajrasky Kok. --- diff --git a/Lib/email/message.py b/Lib/email/message.py index 5020a0325e67..f43a3809beca 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) """