summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamal Gill <kamalgill@mac.com>2013-03-16 12:14:00 -0700
committerKamal Gill <kamalgill@mac.com>2013-03-16 12:14:00 -0700
commit9bf8ab29fc94c3423226f8cbab7d9d8ae2120b6b (patch)
tree76ebf8d522760cd02ced34979bf82be78bde1300
parent2a52b8a60f14a1922331fb736c1181f28cefac2c (diff)
downloadpyramid-9bf8ab29fc94c3423226f8cbab7d9d8ae2120b6b.tar.gz
pyramid-9bf8ab29fc94c3423226f8cbab7d9d8ae2120b6b.tar.bz2
pyramid-9bf8ab29fc94c3423226f8cbab7d9d8ae2120b6b.zip
Fix typo in docstring.
-rw-r--r--pyramid/config/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/config/views.py b/pyramid/config/views.py
index 201ce9899..c53b2b091 100644
--- a/pyramid/config/views.py
+++ b/pyramid/config/views.py
@@ -1617,7 +1617,7 @@ class ViewsConfiguratorMixin(object):
):
""" Add a default Not Found View to the current configuration state.
The view will be called when Pyramid or application code raises an
- :exc:`pyramid.httpexceptions.HTTPForbidden` exception (e.g. when a
+ :exc:`pyramid.httpexceptions.HTTPNotFound` exception (e.g. when a
view cannot be found for the request). The simplest example is:
.. code-block:: python