From b525ab0d26628bd59c8b81767ef73f2346a201ba Mon Sep 17 00:00:00 2001 From: pictuga Date: Fri, 30 Oct 2020 22:12:43 +0100 Subject: [PATCH] crawler: fix typo --- morss/crawler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/morss/crawler.py b/morss/crawler.py index fe1805d..72771a6 100644 --- a/morss/crawler.py +++ b/morss/crawler.py @@ -196,7 +196,7 @@ class SizeLimitHandler(BaseHandler): handler_order = 450 - def __init__(self, limit=5*1024^2): + def __init__(self, limit=5*1024**2): self.limit = limit def http_response(self, req, resp):