summaryrefslogtreecommitdiff
path: root/pylint/checkers/refactoring
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2023-03-07 22:57:04 +0100
committerGitHub <noreply@github.com>2023-03-07 22:57:04 +0100
commitee2e63519b15683d8c93626695c97936eb956ebf (patch)
treef390f30ae273f8dd4c1829e32e079a18ab71ceba /pylint/checkers/refactoring
parentca2549708acd3ede6621c56477b1c0333eb62254 (diff)
downloadpylint-git-ee2e63519b15683d8c93626695c97936eb956ebf.tar.gz
Bump pylint to 2.17.0, update changelog (#8395)
Diffstat (limited to 'pylint/checkers/refactoring')
-rw-r--r--pylint/checkers/refactoring/refactoring_checker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/refactoring/refactoring_checker.py b/pylint/checkers/refactoring/refactoring_checker.py
index 26877ccdb..b0a87b4c9 100644
--- a/pylint/checkers/refactoring/refactoring_checker.py
+++ b/pylint/checkers/refactoring/refactoring_checker.py
@@ -460,7 +460,7 @@ class RefactoringChecker(checkers.BaseTokenChecker):
"R1732": (
"Consider using 'with' for resource-allocating operations",
"consider-using-with",
- "Emitted if a resource-allocating assignment or call may be replaced by a 'with' block."
+ "Emitted if a resource-allocating assignment or call may be replaced by a 'with' block. "
"By using 'with' the release of the allocated resources is ensured even in the case "
"of an exception.",
),