sshagent: add spaces between functions
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user