1
0
mirror of https://github.com/django/django.git synced 2025-06-04 19:19:13 +00:00

[2.0.x] Fixed #28883 -- Doc'd that the uuid URL path converter matches lowercase only letters.

Backport of bae365e13c38f0e33b9f00453768de2aac6c727e from master
This commit is contained in:
Tim Graham 2017-12-06 09:16:32 -05:00
parent 741711f8a2
commit be70d3b968

View File

@ -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.