aboutsummaryrefslogtreecommitdiffstats
path: root/server.py
diff options
context:
space:
mode:
Diffstat (limited to 'server.py')
-rw-r--r--server.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/server.py b/server.py
index 1780ed3..9db29e9 100644
--- a/server.py
+++ b/server.py
@@ -40,13 +40,17 @@ class Server(object):
def handle_ssh_connection(self, client):
self._handle_connection(
client,
- lambda client, connection_id: ssh.Connection(client, connection_id, self.publisher, self.keyfile)
+ lambda client, connection_id: ssh.Connection(
+ client, connection_id, self.publisher, self.keyfile
+ )
)
def handle_termcast_connection(self, client):
self._handle_connection(
client,
- lambda client, connection_id: termcast.Connection(client, connection_id, self.publisher)
+ lambda client, connection_id: termcast.Connection(
+ client, connection_id, self.publisher
+ )
)
def _wait_for_connection(self, sock, cb):