summaryrefslogtreecommitdiff
path: root/django/utils/encoding.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/utils/encoding.py')
-rw-r--r--django/utils/encoding.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/encoding.py b/django/utils/encoding.py
index 39d44aed0d..19eb150ad7 100644
--- a/django/utils/encoding.py
+++ b/django/utils/encoding.py
@@ -160,7 +160,7 @@ def uri_to_iri(uri):
if uri is None:
return uri
uri = force_bytes(uri)
- # Fast selective unqote: First, split on '%' and then starting with the
+ # Fast selective unquote: First, split on '%' and then starting with the
# second block, decode the first 2 bytes if they represent a hex code to
# decode. The rest of the block is the part after '%AB', not containing
# any '%'. Add that to the output without further processing.