summaryrefslogtreecommitdiff
path: root/bottle.py
diff options
context:
space:
mode:
Diffstat (limited to 'bottle.py')
-rwxr-xr-xbottle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bottle.py b/bottle.py
index be42bcb..b8a79f1 100755
--- a/bottle.py
+++ b/bottle.py
@@ -1363,7 +1363,7 @@ class BaseRequest(object):
def _get_body_string(self, maxread):
""" Read body into a string. Raise HTTPError(413) on requests that are
- to large. """
+ too large. """
if self.content_length > maxread:
raise HTTPError(413, 'Request entity too large')
data = self.body.read(maxread + 1)