From 5f7dd41f2195a4109c630121d2c363024ad67b23 Mon Sep 17 00:00:00 2001 From: bbangert Date: Wed, 8 Mar 2006 23:53:42 +0000 Subject: Fixed improper name of WSGIRequest object --- paste/request.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'paste/request.py') 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 -- cgit v1.2.1