diff --git a/vcr/stubs/__init__.py b/vcr/stubs/__init__.py index 4d4bb39d..aaad91b1 100644 --- a/vcr/stubs/__init__.py +++ b/vcr/stubs/__init__.py @@ -66,6 +66,7 @@ def __init__(self, recorded_response): self.reason = recorded_response["status"]["message"] self.status = self.code = recorded_response["status"]["code"] self.version = None + self.version_string = None self._content = BytesIO(self.recorded_response["body"]["string"]) self._closed = False self._original_response = self # for requests.session.Session cookie extraction