From 3c2f01c91f798bc2ecefbd7c3864dc5e8c5af5c8 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Sun, 5 May 2013 13:59:34 -0700 Subject: [PATCH] Flip bad known_hosts line to INFO from WARN re #153 --- paramiko/hostkeys.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/paramiko/hostkeys.py b/paramiko/hostkeys.py index c54d2e7..93a621d 100644 --- a/paramiko/hostkeys.py +++ b/paramiko/hostkeys.py @@ -66,7 +66,7 @@ class HostKeyEntry: fields = line.split(' ') if len(fields) < 3: # Bad number of fields - log.warn("Not enough fields found in known_hosts in line %s (%r)" % + log.info("Not enough fields found in known_hosts in line %s (%r)" % (lineno, line)) return None fields = fields[:3] @@ -82,7 +82,7 @@ class HostKeyEntry: elif keytype == 'ssh-dss': key = DSSKey(data=base64.decodestring(key)) else: - log.warn("Unable to handle key of type %s" % (keytype,)) + log.info("Unable to handle key of type %s" % (keytype,)) return None except binascii.Error, e: raise InvalidHostKey(line, e)