summaryrefslogtreecommitdiff
path: root/django/utils/autoreload.py
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-09-25 23:48:47 -0700
committerClaude Paroz <claude@2xlibre.net>2018-09-26 08:48:47 +0200
commit82f286cf6f198d37850d3c5df637b5665566a66b (patch)
treebf8d7b8d45ee9bcf033ecbd35d73f98f3f58d87e /django/utils/autoreload.py
parentd1d5c97bc2821bf8c0f4b2d9c7ab16200845b494 (diff)
Refs #29784 -- Switched to https:// links where available.
Diffstat (limited to 'django/utils/autoreload.py')
-rw-r--r--django/utils/autoreload.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/utils/autoreload.py b/django/utils/autoreload.py
index 7e83a7fd8c..abee72e485 100644
--- a/django/utils/autoreload.py
+++ b/django/utils/autoreload.py
@@ -1,5 +1,5 @@
# Autoreloading launcher.
-# Borrowed from Peter Hunt and the CherryPy project (http://www.cherrypy.org).
+# Borrowed from Peter Hunt and the CherryPy project (https://cherrypy.org/).
# Some taken from Ian Bicking's Paste (http://pythonpaste.org/).
#
# Portions copyright (c) 2004, CherryPy Team (team@cherrypy.org)
@@ -42,7 +42,7 @@ from django.conf import settings
from django.core.signals import request_finished
# This import does nothing, but it's necessary to avoid some race conditions
-# in the threading module. See http://code.djangoproject.com/ticket/2330 .
+# in the threading module. See https://code.djangoproject.com/ticket/2330 .
try:
import threading # NOQA
except ImportError: