Fix super() call

This commit is contained in:
Paul Tremberth 2016-02-20 02:07:45 +01:00
parent 49c757f208
commit 3f946b5278
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ try:
"""
def __init__(self, method=SSL.SSLv23_METHOD, *args, **kwargs):
super(BrowserLikePolicyForHTTPS, self).__init__(*args, **kwargs)
super(ScrapyClientContextFactory, self).__init__(*args, **kwargs)
self._ssl_method = method
def getCertificateOptions(self):