summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-05-13 00:27:08 (GMT)
committerGitHub <noreply@github.com>2021-05-13 00:27:08 (GMT)
commit6275ea02825731fd23f523058ac87aac53888740 (patch)
tree7c2cfe87b29c1cbc8b0e4e2fdb688343b411c6fd
parentba260acb22f3a6de434dc7a159ddb94a6a8c9b7c (diff)
downloadcpython-6275ea02825731fd23f523058ac87aac53888740.zip
cpython-6275ea02825731fd23f523058ac87aac53888740.tar.gz
cpython-6275ea02825731fd23f523058ac87aac53888740.tar.bz2
bpo-44030: Fix formatting error in exceptions docs (GH-25929) (GH-26086)
(cherry picked from commit 8ea350ee9055435c4267834cdaf85f1a2d4a1ed1) Co-authored-by: Miguel Brito <5544985+miguendes@users.noreply.github.com>
-rw-r--r--Doc/library/exceptions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst
index c83daae..173c1c2 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:
...