diff --git a/lib/common/pylint_data/messages/bare-except/details.md b/lib/common/pylint_data/messages/bare-except/details.md index ef49eaa..ada39f5 100644 --- a/lib/common/pylint_data/messages/bare-except/details.md +++ b/lib/common/pylint_data/messages/bare-except/details.md @@ -2,5 +2,5 @@ A good rule of thumb is to limit use of bare 'except' clauses to two cases: 1. If the exception handler will be printing out or logging the traceback; at least the user will be aware that an error has occurred. 2. If the code needs to do some cleanup work, but then lets the -exception propagate upwards with raise. [try\...finally]{.title-ref} can +exception propagate upwards with raise. [`try\...finally`](https://docs.python.org/3/reference/compound_stmts.html#finally-clause) can be a better way to handle this case.