#19485: clarify get_param example.

Patch by Vajrasky Kok.
This commit is contained in:
R David Murray 2013-11-03 12:23:23 -05:00
parent b2817327b9
commit 0de4d3e3eb
1 changed files with 1 additions and 1 deletions

View File

@ -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)
"""