summaryrefslogtreecommitdiff
path: root/pylint/utils/utils.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2019-05-22 08:56:46 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2019-05-22 09:26:18 +0200
commit6b0003da63d30d0f345f24380c340b064713597f (patch)
tree47fce11a3b686129d09e08df4f2deb6fc762a5e6 /pylint/utils/utils.py
parentf9e99fd5f3acaf2d836c7a3456f7538611cd4167 (diff)
downloadpylint-git-6b0003da63d30d0f345f24380c340b064713597f.tar.gz
Fix a bunch of linting errors from the codebase
Diffstat (limited to 'pylint/utils/utils.py')
-rw-r--r--pylint/utils/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/utils/utils.py b/pylint/utils/utils.py
index e78cd98a4..ab28a07b5 100644
--- a/pylint/utils/utils.py
+++ b/pylint/utils/utils.py
@@ -127,8 +127,8 @@ def expand_modules(files_or_modules, black_list, black_list_re):
if filepath is None:
continue
except (ImportError, SyntaxError) as ex:
- # FIXME p3k : the SyntaxError is a Python bug and should be
- # removed as soon as possible http://bugs.python.org/issue10588
+ # The SyntaxError is a Python bug and should be
+ # removed once we move away from imp.find_module: http://bugs.python.org/issue10588
errors.append({"key": "fatal", "mod": modname, "ex": ex})
continue