diff options
| -rw-r--r-- | pyramid/view.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyramid/view.py b/pyramid/view.py index 0f1a5e41c..edf3d8585 100644 --- a/pyramid/view.py +++ b/pyramid/view.py @@ -586,7 +586,8 @@ class ViewMethodsMixin(object): object that this method is attached to as the ``request``, and ``True`` for ``secure``. - This method returns a :term:`response` object.""" + This method returns a :term:`response` object or ``None`` if no + matching exception view can be found..""" if request is None: request = self |
