updated all classes to be created without using (object), in python3 all classes are new style classes
This commit is contained in:
parent
39c40d2a8c
commit
6a0a9e7698
24 changed files with 48 additions and 48 deletions
|
@ -21,7 +21,7 @@ LOCK = threading.Lock()
|
|||
CMD_HIDE = True
|
||||
|
||||
|
||||
class DistributedServer(object):
|
||||
class DistributedServer:
|
||||
"""
|
||||
Provides distributed server interactions.
|
||||
"""
|
||||
|
@ -101,7 +101,7 @@ class DistributedServer(object):
|
|||
os.unlink(temp.name)
|
||||
|
||||
|
||||
class DistributedController(object):
|
||||
class DistributedController:
|
||||
"""
|
||||
Provides logic for dealing with remote tunnels and distributed servers.
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue