looking at this code and trying things out after a long time. lots of cleanups and...
[ncclient] / ncclient / transport / errors.py
index 84aa986..ec95c68 100644 (file)
@@ -36,7 +36,6 @@ class SSHError(TransportError):
 class SSHUnknownHostError(SSHError):
 
     def __init__(self, host, fingerprint):
-        SSHError.__init__(self, 'Unknown host key [%s] for [%s]'
-                          % (fingerprint, host))
+        SSHError.__init__(self, 'Unknown host key [%s] for [%s]' % (fingerprint, host))
         self.host = host
         self.fingerprint = fingerprint