1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-10 01:25:34 +00:00
This commit is contained in:
Kevin McCarthy
2012-07-02 10:00:18 -10:00
parent e1cd92b14d
commit bf844c6952
2 changed files with 18 additions and 21 deletions

View File

@@ -1,4 +1,3 @@
import socket
from httplib import HTTPConnection, HTTPSConnection, HTTPMessage
from cStringIO import StringIO
from .files import save_cassette, load_cassette
@@ -83,8 +82,8 @@ class VCRHTTPSConnection(HTTPSConnection):
one.
"""
HTTPConnection.__init__(self, *args, **kwargs)
self.key_file = kwargs.pop('key_file',None)
self.cert_file = kwargs.pop('cert_file',None)
self.key_file = kwargs.pop('key_file', None)
self.cert_file = kwargs.pop('cert_file', None)
self._cassette = Cassette()
def _load_old_response(self):