Refactor wrong super() parents in a few managers.
This commit is contained in:
parent
4699b38b31
commit
a09835049b
5 changed files with 13 additions and 13 deletions
|
|
@ -51,7 +51,7 @@ class SSLProtocol(TelnetProtocol):
|
|||
is done with encryption.
|
||||
"""
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(TelnetProtocol, self).__init__(*args, **kwargs)
|
||||
super(SSLProtocol, self).__init__(*args, **kwargs)
|
||||
self.protocol_name = "ssl"
|
||||
|
||||
def verify_SSL_key_and_cert(keyfile, certfile):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue