From 94b88987fd4f742538ccf43f5789e9c6463bca0e Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Tue, 2 Nov 2010 03:35:17 -0400 Subject: - Remove references to 'WebOb' Response and just call it 'Response', and note that it is imported from pyramid. API docs can mention its inheritance from webob (aka "Provide a webob.Response class facade for forward compat"). --- docs/narr/hooks.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/narr/hooks.rst') diff --git a/docs/narr/hooks.rst b/docs/narr/hooks.rst index 130dd8acd..701cab17c 100644 --- a/docs/narr/hooks.rst +++ b/docs/narr/hooks.rst @@ -72,7 +72,7 @@ callable: .. code-block:: python :linenos: - from webob.exc import HTTPNotFound + from pyramid.httpexceptions import HTTPNotFound def notfound_view(request): return HTTPNotFound() -- cgit v1.2.3