From e67903d134039b2452b2a3806e10451491ce768d Mon Sep 17 00:00:00 2001 From: Dag Odenhall Date: Sat, 5 Jun 2010 08:03:37 +0800 Subject: [PATCH] Fixing another article error, in handle_http_exception. --- flask.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask.py b/flask.py index 32a97cbf..abcd08e5 100644 --- a/flask.py +++ b/flask.py @@ -1287,7 +1287,7 @@ class Flask(_PackageBoundObject): return f def handle_http_exception(self, e): - """Handles an HTTP exception. By default this will invoke the + """Handles a HTTP exception. By default this will invoke the registered error handlers and fall back to returning the exception as response.