Revision 8b4b9936 ncclient/session/ssh.py

b/ncclient/session/ssh.py
12 12
# See the License for the specific language governing permissions and
13 13
# limitations under the License.
14 14

  
15
import logging
16 15
from cStringIO import StringIO
17 16
from os import SEEK_CUR
18 17
import socket
19 18

  
20 19
import paramiko
21 20

  
21
from . import logger
22 22
from session import Session, SessionError, SessionCloseError
23 23

  
24
logger = logging.getLogger('ncclient.ssh')
25

  
26 24
BUF_SIZE = 4096
27 25
MSG_DELIM = ']]>]]>'
28 26

  

Also available in: Unified diff