From ed984f2ac4923d6bc625adb4e8d9146765a02ab1 Mon Sep 17 00:00:00 2001 From: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> Date: Wed, 12 Mar 2025 15:00:32 +0100 Subject: [PATCH] Refs #34380 -- Fixed the documented URLField default scheme to https. Missed in 9a3f86e96009c1137b286f6d579b9d812a0dee69. --- docs/ref/forms/fields.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt index df8d36e365..8d2ed2d404 100644 --- a/docs/ref/forms/fields.txt +++ b/docs/ref/forms/fields.txt @@ -1142,7 +1142,7 @@ For each field, we describe the default widget used if you don't specify .. attribute:: assume_scheme The scheme assumed for URLs provided without one. Defaults to - ``"http"``. For example, if ``assume_scheme`` is ``"https"`` and the + ``"https"``. For example, if ``assume_scheme`` is ``"https"`` and the provided value is ``"example.com"``, the normalized value will be ``"https://example.com"``.