From e2ac82c47c0e70426f3be4329f20bd3b500078bb Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Mon, 24 Feb 2014 17:18:00 -0800 Subject: [PATCH] Formatting --- paramiko/transport.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/paramiko/transport.py b/paramiko/transport.py index d1159eb..612dfc2 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -70,8 +70,9 @@ class Transport (threading.Thread): """ An SSH Transport attaches to a stream (usually a socket), negotiates an encrypted session, authenticates, and then creates stream tunnels, called - `channels <.Channel>`, across the session. Multiple channels can be multiplexed - across a single session (and often are, in the case of port forwardings). + `channels <.Channel>`, across the session. Multiple channels can be + multiplexed across a single session (and often are, in the case of port + forwardings). """ _PROTO_ID = '2.0' _CLIENT_ID = 'paramiko_%s' % (paramiko.__version__)