summaryrefslogtreecommitdiffstats
path: root/Lib/wsgiref/headers.py
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-07-11 14:33:51 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-07-11 14:33:51 (GMT)
commit74b8d333b708e2f029f60a06bbb5abb31199426f (patch)
tree395efe22fbfc0239eb794063d4add723a714c5cf /Lib/wsgiref/headers.py
parentc91cbb948a223f0921300dc7b4f4b762b60420f3 (diff)
downloadcpython-74b8d333b708e2f029f60a06bbb5abb31199426f.zip
cpython-74b8d333b708e2f029f60a06bbb5abb31199426f.tar.gz
cpython-74b8d333b708e2f029f60a06bbb5abb31199426f.tar.bz2
#2622 Import errors in email.message, from a py2app standalone application.
Patch by Mads Kiilerich, Reviewed by Barry Warsaw.
Diffstat (limited to 'Lib/wsgiref/headers.py')
-rw-r--r--Lib/wsgiref/headers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/wsgiref/headers.py b/Lib/wsgiref/headers.py
index 02fd6a0..6bd304e 100644
--- a/Lib/wsgiref/headers.py
+++ b/Lib/wsgiref/headers.py
@@ -1,6 +1,6 @@
"""Manage HTTP Response Headers
-Much of this module is red-handedly pilfered from email.Message in the stdlib,
+Much of this module is red-handedly pilfered from email.message in the stdlib,
so portions are Copyright (C) 2001,2002 Python Software Foundation, and were
written by Barry Warsaw.
"""
@@ -174,7 +174,7 @@ class Headers:
h.add_header('content-disposition', 'attachment', filename='bud.gif')
- Note that unlike the corresponding 'email.Message' method, this does
+ Note that unlike the corresponding 'email.message' method, this does
*not* handle '(charset, language, value)' tuples: all values must be
strings or None.
"""