summaryrefslogtreecommitdiff
path: root/paste/wsgilib.py
diff options
context:
space:
mode:
authorianb <devnull@localhost>2005-12-14 21:19:08 +0000
committerianb <devnull@localhost>2005-12-14 21:19:08 +0000
commitdc9ad0dd63329974cc674baf5c423c5dd9d070f3 (patch)
tree4e83f78cbbe8868bc81fbd913393aae3d7b14e7a /paste/wsgilib.py
parente39e2788deb74a726b6cf4de0171535e60ff57b4 (diff)
downloadpaste-dc9ad0dd63329974cc674baf5c423c5dd9d070f3.tar.gz
Move things to using request module instead of wsgilib
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 8d9dc9d..b0af4e8 100644
--- a/paste/wsgilib.py
+++ b/paste/wsgilib.py
@@ -388,7 +388,7 @@ def capture_output(environ, start_response, application):
warnings.warn(
'wsgilib.capture_output has been deprecated in favor '
'of wsgilib.intercept_output',
- DeprecationWarning, 1)
+ DeprecationWarning, 2)
data = []
output = StringIO()
def replacement_start_response(status, headers, exc_info=None):