diff options
Diffstat (limited to 'django/contrib/admin/utils.py')
| -rw-r--r-- | django/contrib/admin/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/admin/utils.py b/django/contrib/admin/utils.py index 7eea70b194..5821db5ffe 100644 --- a/django/contrib/admin/utils.py +++ b/django/contrib/admin/utils.py @@ -69,7 +69,7 @@ def quote(s): Ensure that primary key values do not confuse the admin URLs by escaping any '/', '_' and ':' and similarly problematic characters. Similar to urllib.parse.quote(), except that the quoting is slightly - different so that it doesn't get automatically unquoted by the Web browser. + different so that it doesn't get automatically unquoted by the web browser. """ return s.translate(QUOTE_MAP) if isinstance(s, str) else s |
