summaryrefslogtreecommitdiff
path: root/pylint/checkers/format.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/checkers/format.py')
-rw-r--r--pylint/checkers/format.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/format.py b/pylint/checkers/format.py
index 62064b88b..f79fd6415 100644
--- a/pylint/checkers/format.py
+++ b/pylint/checkers/format.py
@@ -448,7 +448,7 @@ class FormatChecker(BaseTokenChecker):
# without an error.
elif token[1] == "for":
return
- # A generator expression can have a 'else' token in it.
+ # A generator expression can have an 'else' token in it.
# We check the rest of the tokens to see if any problems incure after
# the 'else'.
elif token[1] == "else":