From d6fd67eac6cb4e76c78720d3d79f35f20bfb3c7b Mon Sep 17 00:00:00 2001 From: Miguel Mendes Date: Wed, 5 May 2021 22:07:09 +0100 Subject: [PATCH] Fix exceptions docs --- Doc/library/exceptions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst index c83daae302c19d5..173c1c285f01af2 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: ...