summaryrefslogtreecommitdiff
path: root/django/utils
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-01-19 13:21:54 -0500
committerTim Graham <timograham@gmail.com>2017-01-19 13:22:36 -0500
commitc96d1c74766a14c9d2b2796e7f5b176a02ab0fac (patch)
treece7b274834972d80bc502269ab71c9192658ce1c /django/utils
parent518693bef559bb719e68b08904a9250abfd9237c (diff)
[1.11.x] Fixed django/utils/http.py comment typo.
Backport of d29fd3f9a63f1e515fa8ed863b08a5389938b05f from master
Diffstat (limited to 'django/utils')
-rw-r--r--django/utils/http.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/http.py b/django/utils/http.py
index cba2a08095..2d162a0fa5 100644
--- a/django/utils/http.py
+++ b/django/utils/http.py
@@ -187,7 +187,7 @@ def base36_to_int(s):
input won't fit into an int.
"""
# To prevent overconsumption of server resources, reject any
- # base36 string that is long than 13 base36 digits (13 digits
+ # base36 string that is longer than 13 base36 digits (13 digits
# is sufficient to base36-encode any 64-bit integer)
if len(s) > 13:
raise ValueError("Base36 input too large")