diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2019-05-22 08:56:46 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2019-05-22 09:26:18 +0200 |
commit | 6b0003da63d30d0f345f24380c340b064713597f (patch) | |
tree | 47fce11a3b686129d09e08df4f2deb6fc762a5e6 /pylint/utils/utils.py | |
parent | f9e99fd5f3acaf2d836c7a3456f7538611cd4167 (diff) | |
download | pylint-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.py | 4 |
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 |