From 2e6905e15221691e645e5ff4ba0378a6d9438c29 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Mon, 25 Oct 2010 23:09:02 -0400 Subject: add httpexceptions docs --- docs/tutorials/wiki/src/authorization/tutorial/login.py | 2 +- docs/tutorials/wiki/src/authorization/tutorial/views.py | 2 +- docs/tutorials/wiki/src/viewdecorators/tutorial/views.py | 2 +- docs/tutorials/wiki/src/views/tutorial/views.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/tutorials/wiki/src') diff --git a/docs/tutorials/wiki/src/authorization/tutorial/login.py b/docs/tutorials/wiki/src/authorization/tutorial/login.py index c029f25ce..ee67d9a5e 100644 --- a/docs/tutorials/wiki/src/authorization/tutorial/login.py +++ b/docs/tutorials/wiki/src/authorization/tutorial/login.py @@ -1,4 +1,4 @@ -from webob.exc import HTTPFound +from pyramid.httpexceptions import HTTPFound from pyramid.view import bfg_view from pyramid.url import model_url diff --git a/docs/tutorials/wiki/src/authorization/tutorial/views.py b/docs/tutorials/wiki/src/authorization/tutorial/views.py index f0fef5d81..8c35afcd6 100644 --- a/docs/tutorials/wiki/src/authorization/tutorial/views.py +++ b/docs/tutorials/wiki/src/authorization/tutorial/views.py @@ -1,7 +1,7 @@ from docutils.core import publish_parts import re -from webob.exc import HTTPFound +from pyramid.httpexceptions import HTTPFound from pyramid.url import model_url from pyramid.security import authenticated_userid diff --git a/docs/tutorials/wiki/src/viewdecorators/tutorial/views.py b/docs/tutorials/wiki/src/viewdecorators/tutorial/views.py index 60cb49faa..937a67344 100644 --- a/docs/tutorials/wiki/src/viewdecorators/tutorial/views.py +++ b/docs/tutorials/wiki/src/viewdecorators/tutorial/views.py @@ -1,7 +1,7 @@ from docutils.core import publish_parts import re -from webob.exc import HTTPFound +from pyramid.httpexceptions import HTTPFound from pyramid.url import model_url from pyramid.view import bfg_view diff --git a/docs/tutorials/wiki/src/views/tutorial/views.py b/docs/tutorials/wiki/src/views/tutorial/views.py index f13ed0381..acc1bbb57 100644 --- a/docs/tutorials/wiki/src/views/tutorial/views.py +++ b/docs/tutorials/wiki/src/views/tutorial/views.py @@ -1,7 +1,7 @@ from docutils.core import publish_parts import re -from webob.exc import HTTPFound +from pyramid.httpexceptions import HTTPFound from pyramid.url import model_url from tutorial.models import Page -- cgit v1.2.3