Merge #19485: clarify get_param example.

This commit is contained in:
R David Murray 2013-11-03 12:23:51 -05:00
commit af734963d1

View File

@ -662,7 +662,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)
"""