summaryrefslogtreecommitdiff
path: root/paste/request.py
diff options
context:
space:
mode:
authorbbangert <devnull@localhost>2006-03-08 23:53:42 +0000
committerbbangert <devnull@localhost>2006-03-08 23:53:42 +0000
commit5f7dd41f2195a4109c630121d2c363024ad67b23 (patch)
treec5d07d181c90081d6382b9d65cdba51586284ee4 /paste/request.py
parent6fe78e158437a67b3c4b50bff7b4a1e88a95b3b5 (diff)
downloadpaste-5f7dd41f2195a4109c630121d2c363024ad67b23.tar.gz
Fixed improper name of WSGIRequest object
Diffstat (limited to 'paste/request.py')
-rw-r--r--paste/request.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/paste/request.py b/paste/request.py
index bbd2f43..7ac0450 100644
--- a/paste/request.py
+++ b/paste/request.py
@@ -306,8 +306,8 @@ class LazyCache(object):
self.result = self.fn(*args)
return self.result
-class Request(object):
- """Request API Object
+class WSGIRequest(object):
+ """WSGI Request API Object
This object represents a WSGI request with a more friendly interface.
This does not expose every detail of the WSGI environment, and does not