From 88a031ab24b0e7e2a5190f9e48f80f2b21aba1a0 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Sat, 5 Jun 2010 04:36:04 -0700 Subject: [PATCH] Revert that change, an HTTP is correct from what I know. --- flask.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask.py b/flask.py index abcd08e5..32a97cbf 100644 --- a/flask.py +++ b/flask.py @@ -1287,7 +1287,7 @@ class Flask(_PackageBoundObject): return f def handle_http_exception(self, e): - """Handles a HTTP exception. By default this will invoke the + """Handles an HTTP exception. By default this will invoke the registered error handlers and fall back to returning the exception as response.