From bae365e13c38f0e33b9f00453768de2aac6c727e Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 6 Dec 2017 09:16:32 -0500 Subject: [PATCH] Fixed #28883 -- Doc'd that the uuid URL path converter matches lowercase only letters. --- docs/topics/http/urls.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt index 38648d7de0..aff12410a3 100644 --- a/docs/topics/http/urls.txt +++ b/docs/topics/http/urls.txt @@ -127,7 +127,7 @@ The following path converters are available by default: plus the hyphen and underscore characters. For example, ``building-your-1st-django-site``. -* ``uuid`` - Matches a formatted UUID. For example, +* ``uuid`` - Matches a formatted UUID (letters must be lowercase). For example, ``075194d3-6885-417e-a8a8-6c931e272f00``. Returns a :class:`~uuid.UUID` instance.