summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog2
1 files changed, 1 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8678b84..e969f62 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -267,7 +267,7 @@ ChangeLog for Pylint
* Add a new error, 'misplaced-bare-raise'.
- The error is used when a bare raise is not used inside a try suite.
+ The error is used when a bare raise is not used inside an except clause.
This can generate a RuntimeError in Python, if there are no active exceptions
to be reraised. While it works in Python 2 due to the fact that the exception
leaks outside of the except block, it's nevertheless a behaviour that