diff options
| author | Tim Graham <timograham@gmail.com> | 2017-12-06 09:16:32 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-12-06 09:16:52 -0500 |
| commit | be70d3b9687670c7c44cedb4a36476952e5c59d0 (patch) | |
| tree | 6db866aaf6f4cdc6cb6845e6562e11d6724283e9 | |
| parent | 741711f8a28147f9d9d67a7a0aa7783dd238b1ea (diff) | |
[2.0.x] Fixed #28883 -- Doc'd that the uuid URL path converter matches lowercase only letters.
Backport of bae365e13c38f0e33b9f00453768de2aac6c727e from master
| -rw-r--r-- | docs/topics/http/urls.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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. |
