diff options
author | Nathan Scowcroft <scowcron@gmail.com> | 2013-06-24 16:43:12 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-01-08 12:45:22 -0800 |
commit | 0fea895cdb1e69737f3526bad02e533e99b0bfe0 (patch) | |
tree | b844e0e1d9250d23f8bc2548c6babac94b4fd8b4 | |
parent | a1c1f8f29f3c24e9f34a76e3f5efc57e62396cd8 (diff) |
ditto
-rw-r--r-- | paramiko/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/client.py b/paramiko/client.py index 4adcfe74..be896091 100644 --- a/paramiko/client.py +++ b/paramiko/client.py @@ -190,7 +190,7 @@ class SSHClient (object): # update local host keys from file (in case other SSH clients # have written to the known_hosts file meanwhile. if self._host_keys_filename is not None: - self.load_host_keys(self._known_keys_filename) + self.load_host_keys(self._host_keys_filename) f = open(filename, 'w') for hostname, keys in self._host_keys.iteritems(): |