summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2017-12-12 18:09:19 +0100
committerClaudiu Popa <pcmanticore@gmail.com>2017-12-12 18:09:19 +0100
commitf4426f61f9a07fe9860050cd760264cbc59f1380 (patch)
tree5529aba230bc56bc096523350eb09a531468ac53
parent642577760a2afb355ccfb1f93e21a5bd1e37a4ed (diff)
downloadpylint-git-f4426f61f9a07fe9860050cd760264cbc59f1380.tar.gz
Remove non-ascii and non-displayable character from the file
-rw-r--r--pylint/checkers/misc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/misc.py b/pylint/checkers/misc.py
index 4103069d8..4a76a2a35 100644
--- a/pylint/checkers/misc.py
+++ b/pylint/checkers/misc.py
@@ -84,7 +84,7 @@ class EncodingChecker(BaseChecker):
# In case the module ends with commented lines, the astroid parser
# don't take into account those lines, then:
# - the line number of those lines is greater than the
- #  module last line number (module.tolineno)
+ # module last line number (module.tolineno)
# - astroid module object can't inform pylint
# of disabled messages in those extra lines.
if lineno > module_last_lineno: