From c021e58775eaf8e2dc7a91c903dc1c95dc18e829 Mon Sep 17 00:00:00 2001 From: Day Barr Date: Fri, 25 Oct 2013 16:51:29 +0100 Subject: [PATCH] Fix typo in docs for error_handler_spec --- flask/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/app.py b/flask/app.py index 167ea32d..42a1943d 100644 --- a/flask/app.py +++ b/flask/app.py @@ -361,7 +361,7 @@ class Flask(_PackageBoundObject): #: A dictionary of all registered error handlers. The key is `None` #: for error handlers active on the application, otherwise the key is #: the name of the blueprint. Each key points to another dictionary - #: where they key is the status code of the http exception. The + #: where the key is the status code of the http exception. The #: special key `None` points to a list of tuples where the first item #: is the class for the instance check and the second the error handler #: function.