From d187d910b9830f853f0a23f3700d41ea54571c7a Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Sat, 8 Mar 2014 20:16:45 -1000 Subject: [PATCH] Don't try to inherit from the real response object --- vcr/stubs/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcr/stubs/__init__.py b/vcr/stubs/__init__.py index 42d93df..4345e77 100644 --- a/vcr/stubs/__init__.py +++ b/vcr/stubs/__init__.py @@ -32,7 +32,7 @@ def parse_headers(header_list): headers = b"".join(header_list) + b"\r\n" return compat.get_httpmessage(headers) -class VCRHTTPResponse(HTTPResponse): +class VCRHTTPResponse(object): """ Stub reponse class that gets returned instead of a HTTPResponse """