From 1643e5c39157e4f43d20b965c9967eeec8e90700 Mon Sep 17 00:00:00 2001 From: Sean Reifschneider Date: Sun, 6 Feb 2011 14:14:51 -0700 Subject: [PATCH] Fixing a word usage issue in docs. Signed-off-by: Armin Ronacher --- flask/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/app.py b/flask/app.py index 066215be..39445ab3 100644 --- a/flask/app.py +++ b/flask/app.py @@ -715,7 +715,7 @@ class Flask(_PackageBoundObject): def handle_exception(self, e): """Default exception handling that kicks in when an exception - occours that is not catched. In debug mode the exception will + occours that is not caught. In debug mode the exception will be re-raised immediately, otherwise it is logged and the handler for a 500 internal server error is used. If no such handler exists, a default 500 internal server error message is displayed.