Refactor wrong super() parents in a few managers.

This commit is contained in:
Griatch 2017-01-26 21:35:13 +01:00
parent 4699b38b31
commit a09835049b
5 changed files with 13 additions and 13 deletions

View file

@ -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):