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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/utils/utils.py b/pylint/utils/utils.py
index 658316cf2..21dd8d251 100644
--- a/pylint/utils/utils.py
+++ b/pylint/utils/utils.py
@@ -166,7 +166,7 @@ def expand_modules(files_or_modules, black_list, black_list_re):
continue
except (ImportError, SyntaxError) as ex:
# The SyntaxError is a Python bug and should be
- # removed once we move away from imp.find_module: http://bugs.python.org/issue10588
+ # removed once we move away from imp.find_module: https://bugs.python.org/issue10588
errors.append({"key": "fatal", "mod": modname, "ex": ex})
continue