diff options
author | Robey Pointer <robey@twitter.com> | 2009-02-16 01:35:22 -0800 |
---|---|---|
committer | Robey Pointer <robey@twitter.com> | 2009-02-16 01:35:22 -0800 |
commit | 5def1120136336696b9bde81bcfb162b09174948 (patch) | |
tree | 5540b8a6da4e595fd7add8e43c872b9908c2dacd | |
parent | 25417575ef795c36d2663c88fdedba5bfae5cc26 (diff) |
fix silly exception message.
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | paramiko/transport.py | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..0d20b648 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.pyc @@ -4,7 +4,7 @@ paramiko ======== :Paramiko: Python SSH module -:Copyright: Copyright (c) 2003-2008 Robey Pointer <robey@lag.net> +:Copyright: Copyright (c) 2003-2009 Robey Pointer <robey@lag.net> :License: LGPL :Homepage: http://www.lag.net/paramiko/ diff --git a/paramiko/transport.py b/paramiko/transport.py index cb3f54b4..fa6112aa 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -1423,7 +1423,7 @@ class Transport (threading.Thread): if key is None: raise SSHException('Unknown host key type') if not key.verify_ssh_sig(self.H, Message(sig)): - raise SSHException('Signature verification (%s) failed. Boo. Robey should debug this.' % self.host_key_type) + raise SSHException('Signature verification (%s) failed.' % self.host_key_type) self.host_key = key def _compute_key(self, id, nbytes): |