diff options
Diffstat (limited to 'netlib/http/response.py')
| -rw-r--r-- | netlib/http/response.py | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/netlib/http/response.py b/netlib/http/response.py index da2c8142..8af3c041 100644 --- a/netlib/http/response.py +++ b/netlib/http/response.py @@ -29,8 +29,7 @@ class Response(Message):      An HTTP response.      """      def __init__(self, *args, **kwargs): -        data = ResponseData(*args, **kwargs) -        super(Response, self).__init__(data) +        self.data = ResponseData(*args, **kwargs)      def __repr__(self):          if self.content:  | 
