From 3de544da80eead876509dae8c667bad639789f67 Mon Sep 17 00:00:00 2001 From: Sheng Date: Tue, 10 Apr 2018 11:15:58 +0800 Subject: [PATCH] Append key to entries directly --- main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 4cf285b..13d3d84 100644 --- a/main.py +++ b/main.py @@ -56,7 +56,9 @@ class AutoAddPolicy(paramiko.client.MissingHostKeyPolicy): logging.info( 'Adding {} host key for {}'.format(keytype, hostname) ) - client._host_keys.add(hostname, keytype, key) + client._host_keys._entries.append( + paramiko.hostkeys.HostKeyEntry([hostname], key) + ) with open(client._host_keys_filename, 'a') as f: f.write('{} {} {}\n'.format(