commit | 0de4d3e3eb348d9bfc6df1d7c0651b309306863c | [log] [tgz] |
---|---|---|
author | R David Murray <rdmurray@bitdance.com> | Sun Nov 03 12:23:23 2013 -0500 |
committer | R David Murray <rdmurray@bitdance.com> | Sun Nov 03 12:23:23 2013 -0500 |
tree | f25b926b0885580293d3782ccc0850aeefc6412b | |
parent | b2817327b91274af254dc4fe391fbc488368bfeb [diff] [blame] |
#19485: clarify get_param example. Patch by Vajrasky Kok.
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 @@ 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) """