aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/http/response.py
diff options
context:
space:
mode:
Diffstat (limited to 'netlib/http/response.py')
-rw-r--r--netlib/http/response.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib/http/response.py b/netlib/http/response.py
index 7d272e10..a6a5bf47 100644
--- a/netlib/http/response.py
+++ b/netlib/http/response.py
@@ -11,7 +11,7 @@ from .. import utils
class ResponseData(MessageData):
- def __init__(self, http_version, status_code, reason=None, headers=None, content=None,
+ def __init__(self, http_version, status_code, reason=None, headers=(), content=None,
timestamp_start=None, timestamp_end=None):
if not isinstance(headers, Headers):
headers = Headers(headers)