summaryrefslogtreecommitdiff
path: root/pylint/testutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/testutils.py')
-rw-r--r--pylint/testutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/testutils.py b/pylint/testutils.py
index 6ae98ad0c..a1b03aa8a 100644
--- a/pylint/testutils.py
+++ b/pylint/testutils.py
@@ -286,7 +286,7 @@ def _create_tempfile(content=None):
"""
# Can't use tempfile.NamedTemporaryFile here
# because on Windows the file must be closed before writing to it,
- # see http://bugs.python.org/issue14243
+ # see https://bugs.python.org/issue14243
file_handle, tmp = tempfile.mkstemp()
if content:
# erff