summaryrefslogtreecommitdiffstats
path: root/Lib/email/Message.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-08-23 18:19:30 (GMT)
committerTim Peters <tim.peters@gmail.com>2002-08-23 18:19:30 (GMT)
commit280488b9a3b5cc213d01aae794751b89144f8609 (patch)
treeb7f11d73232fe9cd918e2a37ad000adfc8162cd8 /Lib/email/Message.py
parentfa8dd5f40781d8670824d8ec94e37e4f6e075135 (diff)
downloadcpython-280488b9a3b5cc213d01aae794751b89144f8609.zip
cpython-280488b9a3b5cc213d01aae794751b89144f8609.tar.gz
cpython-280488b9a3b5cc213d01aae794751b89144f8609.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/email/Message.py')
-rw-r--r--Lib/email/Message.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/email/Message.py b/Lib/email/Message.py
index 40e4785..8b4f8bd 100644
--- a/Lib/email/Message.py
+++ b/Lib/email/Message.py
@@ -52,12 +52,12 @@ def _formatparam(param, value=None, quote=1):
def _unquotevalue(value):
if isinstance(value, TupleType):
- return (value[0], value[1], Utils.unquote(value[2]))
+ return (value[0], value[1], Utils.unquote(value[2]))
else:
- return Utils.unquote(value)
+ return Utils.unquote(value)
-
+
class Message:
"""Basic message object for use inside the object tree.