diff options
| author | Michael Merickel <michael@merickel.org> | 2013-03-16 14:34:55 -0700 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2013-03-16 14:34:55 -0700 |
| commit | bebe236dbaa87fb9298bcc0bb27aa7b246b12e35 (patch) | |
| tree | 76ebf8d522760cd02ced34979bf82be78bde1300 | |
| parent | 2a52b8a60f14a1922331fb736c1181f28cefac2c (diff) | |
| parent | 9bf8ab29fc94c3423226f8cbab7d9d8ae2120b6b (diff) | |
| download | pyramid-bebe236dbaa87fb9298bcc0bb27aa7b246b12e35.tar.gz pyramid-bebe236dbaa87fb9298bcc0bb27aa7b246b12e35.tar.bz2 pyramid-bebe236dbaa87fb9298bcc0bb27aa7b246b12e35.zip | |
Merge pull request #915 from kamalgill/master
Fix typo in docstring
| -rw-r--r-- | pyramid/config/views.py | 2 |
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 |
