summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Miller <mtmiller@users.noreply.github.com>2018-10-11 12:10:32 -0700
committerClaudiu Popa <pcmanticore@gmail.com>2018-10-11 22:10:31 +0300
commit9734baebfa3faf90e41f6ae41f80c379953fa56b (patch)
tree2d67976e83e49bfddf34e192d7735ffba9c6b0ff
parent0a39200932a9143082255e600ff5a7e764520ce8 (diff)
downloadpylint-git-9734baebfa3faf90e41f6ae41f80c379953fa56b.tar.gz
Fix typo in msg description (#2548)
-rw-r--r--CONTRIBUTORS.txt2
-rw-r--r--pylint/checkers/variables.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index 5d08fd307..9f71b8fe6 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -245,3 +245,5 @@ contributors:
* Michael Hudson-Doyle
* Lucas Cimon: contributor
+
+* Mike Miller: contributor
diff --git a/pylint/checkers/variables.py b/pylint/checkers/variables.py
index 784568ddd..5b1bce930 100644
--- a/pylint/checkers/variables.py
+++ b/pylint/checkers/variables.py
@@ -287,7 +287,7 @@ MSGS = {
"E0601": (
"Using variable %r before assignment",
"used-before-assignment",
- "Used when a local variable is accessed before it's assignment.",
+ "Used when a local variable is accessed before its assignment.",
),
"E0602": (
"Undefined variable %r",