Skip to content

Commit

Permalink
Add missing colons to versionadded.
Browse files Browse the repository at this point in the history
  • Loading branch information
rduplain committed Jan 17, 2012
1 parent 234ac19 commit 49b77fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flask/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1120,7 +1120,7 @@ def handle_http_exception(self, e):
registered error handlers and fall back to returning the
exception as response.
.. versionadded: 0.3
.. versionadded:: 0.3
"""
handlers = self.error_handler_spec.get(request.blueprint)
if handlers and e.code in handlers:
Expand Down Expand Up @@ -1189,7 +1189,7 @@ def handle_exception(self, e):
for a 500 internal server error is used. If no such handler
exists, a default 500 internal server error message is displayed.
.. versionadded: 0.3
.. versionadded:: 0.3
"""
exc_type, exc_value, tb = sys.exc_info()

Expand Down

0 comments on commit 49b77fb

Please sign in to comment.