summaryrefslogtreecommitdiff
path: root/pylint/utils/utils.py
diff options
context:
space:
mode:
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