diff options
Diffstat (limited to 'voctocore/lib/controlserver.py')
-rw-r--r-- | voctocore/lib/controlserver.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/voctocore/lib/controlserver.py b/voctocore/lib/controlserver.py index 8ebb11b..c457fee 100644 --- a/voctocore/lib/controlserver.py +++ b/voctocore/lib/controlserver.py @@ -6,12 +6,9 @@ from lib.commands import ControlServerCommands from lib.tcpmulticonnection import TCPMultiConnection class ControlServer(TCPMultiConnection): - log = logging.getLogger('ControlServer') - - boundSocket = None - def __init__(self, pipeline): '''Initialize server and start listening.''' + self.log = logging.getLogger('ControlServer') super().__init__(port=9999) self.commands = ControlServerCommands(pipeline) |