summaryrefslogtreecommitdiff
path: root/paste/wsgilib.py
diff options
context:
space:
mode:
authorpjenvey <devnull@localhost>2006-07-27 01:46:42 +0000
committerpjenvey <devnull@localhost>2006-07-27 01:46:42 +0000
commit3f11c29ee57abbfc8b801c38a5879b4346a3a99f (patch)
tree504b15aaf53688c6029f098ac9170c0e12379bae /paste/wsgilib.py
parent9914f34bd97f8fe0cf6529d1cd6f659671e8d59f (diff)
downloadpaste-3f11c29ee57abbfc8b801c38a5879b4346a3a99f.tar.gz
o use response.HeaderDict instead of wsgilib.ResponseHeaderDict
o fixed the misleading ResponseHeaderDict deprecation warning
Diffstat (limited to 'paste/wsgilib.py')
-rw-r--r--paste/wsgilib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/wsgilib.py b/paste/wsgilib.py
index 59f63ab..97ce27f 100644
--- a/paste/wsgilib.py
+++ b/paste/wsgilib.py
@@ -532,7 +532,7 @@ class ResponseHeaderDict(HeaderDict):
def __init__(self, *args, **kw):
warnings.warn(
"The class wsgilib.ResponseHeaderDict has been moved "
- "to paste.response.ResponseHeaderDict",
+ "to paste.response.HeaderDict",
DeprecationWarning, 2)
HeaderDict.__init__(self, *args, **kw)