Fix super() call.

This commit is contained in:
Andrey Rakhmatullin 2019-07-11 13:12:56 +05:00
parent 0b9dce3a6c
commit 0de6ffc8e1
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ if twisted_version >= (14, 0, 0):
"""
def __init__(self, hostname, ctx, verbose_logging=False):
super().__init__(hostname, ctx)
super(ScrapyClientTLSOptions, self).__init__(hostname, ctx)
self.verbose_logging = verbose_logging
def _identityVerifyingInfoCallback(self, connection, where, ret):