From 96a8b5c3a04e3bca57d6ff590462d5f34aad526f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=2E=20K=C3=A4rkk=C3=A4inen?= Date: Mon, 2 Mar 2020 15:33:23 +0200 Subject: [PATCH] Init http.response = None --- sanic/http.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sanic/http.py b/sanic/http.py index 3c79d6c1..e96b5812 100644 --- a/sanic/http.py +++ b/sanic/http.py @@ -60,6 +60,7 @@ class Http: self.keep_alive = True self.head_only = None self.request = None + self.response = None self.exception = None self.url = None