aboutsummaryrefslogtreecommitdiffstats
path: root/server.py
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-09-17 12:59:30 -0400
committerJesse Luehrs <doy@tozt.net>2014-09-17 12:59:30 -0400
commit4c3c6bf163b1b26fa883e724463dafa8ccbbdd0d (patch)
tree64ae6d125a8d7c06fa6555201dcccfa436b354a2 /server.py
parent95d3a2ef4001473aa382eafea2ed00a066973c11 (diff)
downloadpython-termcast-server-4c3c6bf163b1b26fa883e724463dafa8ccbbdd0d.tar.gz
python-termcast-server-4c3c6bf163b1b26fa883e724463dafa8ccbbdd0d.zip
reformatting
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):