summaryrefslogtreecommitdiff
path: root/paste/wsgiwrappers.py
diff options
context:
space:
mode:
authorianb <devnull@localhost>2007-02-01 17:33:27 +0000
committerianb <devnull@localhost>2007-02-01 17:33:27 +0000
commitc44d5633ca9f79e4754d378187a7a52d66ed0c29 (patch)
treeaea44b716c678961a7cd3897cc7b4d5c9fe76110 /paste/wsgiwrappers.py
parent13069a8654e8fbf09b59c319248d9b86784dfbfe (diff)
downloadpaste-c44d5633ca9f79e4754d378187a7a52d66ed0c29.tar.gz
Allow httpserver's readline to take an optional argument (max length) which the cgi module uses.
Diffstat (limited to 'paste/wsgiwrappers.py')
-rw-r--r--paste/wsgiwrappers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/wsgiwrappers.py b/paste/wsgiwrappers.py
index fbf41c3..b94107c 100644
--- a/paste/wsgiwrappers.py
+++ b/paste/wsgiwrappers.py
@@ -297,7 +297,7 @@ class WSGIResponse(object):
+ '\n\n' + content
def __call__(self, environ, start_response):
- """Conveinence call to return output and set status information
+ """Convenience call to return output and set status information
Conforms to the WSGI interface for calling purposes only.