sshagent: add spaces between functions

This commit is contained in:
Roman Zeyde
2015-06-16 10:03:48 +03:00
parent f6b75d6ed0
commit c3c875eb3e
3 changed files with 10 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ from . import protocol
from . import formats
from . import util
@contextlib.contextmanager
def unix_domain_socket_server(sock_path):
log.debug('serving on SSH_AUTH_SOCK=%s', sock_path)
@@ -28,6 +29,7 @@ def unix_domain_socket_server(sock_path):
finally:
os.remove(sock_path)
def handle_connection(conn, keys, signer):
try:
log.debug('welcome agent')
@@ -41,6 +43,7 @@ def handle_connection(conn, keys, signer):
log.exception('error')
raise
def server_thread(server, keys, signer):
log.debug('server thread started')
while True: