From: Miguel Brito <5544985+miguendes@users.noreply.github.com> Date: Thu, 13 May 2021 00:11:36 +0000 (+0100) Subject: bpo-44030: Fix formatting error in exceptions docs (GH-25929) X-Git-Tag: v3.11.0a1~1138 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8ea350ee9055435c4267834cdaf85f1a2d4a1ed1;p=thirdparty%2FPython%2Fcpython.git bpo-44030: Fix formatting error in exceptions docs (GH-25929) --- diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst index c83daae302c1..173c1c285f01 100644 --- a/Doc/library/exceptions.rst +++ b/Doc/library/exceptions.rst @@ -96,7 +96,7 @@ The following exceptions are used mostly as base classes for other exceptions. instance of ``OtherException`` while preserving the traceback. Once raised, the current frame is pushed onto the traceback of the ``OtherException``, as would have happened to the traceback of the - original ``SomeException`` had we allowed it to propagate to the caller. + original ``SomeException`` had we allowed it to propagate to the caller. :: try: ...