1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

Don't try to inherit from the real response object

This commit is contained in:
Kevin McCarthy
2014-03-08 20:16:45 -10:00
parent a73da71159
commit d187d910b9

View File

@@ -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
"""