summaryrefslogtreecommitdiff
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:21:54 -0500
commitd29fd3f9a63f1e515fa8ed863b08a5389938b05f (patch)
tree32d6cbf7b7f143dd1af3a9d484ceb0d1e262cf36
parent9d27478958b50f2f689a103e39bf998fe7486675 (diff)
Fixed django/utils/http.py comment typo.
-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 ae23eec06a..5791856813 100644
--- a/django/utils/http.py
+++ b/django/utils/http.py
@@ -185,7 +185,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")