summaryrefslogtreecommitdiff
path: root/django/http
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2021-04-05 00:29:58 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-12-02 11:27:29 +0100
commit5def7f3f743d0bb178546586245ad88a84b69390 (patch)
tree0596bbe899c098a02585fa0caee2304b0e205204 /django/http
parentd75c387f46c55459a2daf071e5463bad0ad7dcbd (diff)
downloaddjango-5def7f3f743d0bb178546586245ad88a84b69390.tar.gz
Updated various links to HTTPS and new locations.
Co-Authored-By: Nick Pope <nick@nickpope.me.uk>
Diffstat (limited to 'django/http')
-rw-r--r--django/http/multipartparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/http/multipartparser.py b/django/http/multipartparser.py
index f464caa1b4..ddf7cfa2f6 100644
--- a/django/http/multipartparser.py
+++ b/django/http/multipartparser.py
@@ -685,7 +685,7 @@ def parse_header(line):
name = p[:i].strip().lower().decode('ascii')
if name.endswith('*'):
# Lang/encoding embedded in the value (like "filename*=UTF-8''file.ext")
- # http://tools.ietf.org/html/rfc2231#section-4
+ # https://tools.ietf.org/html/rfc2231#section-4
name = name[:-1]
if p.count(b"'") == 2:
has_encoding = True