From 88a7ea3534b2846e5b3b5995a788caaba86d85a8 Mon Sep 17 00:00:00 2001 From: Valentin Samir Date: Wed, 19 Feb 2014 19:39:41 +0100 Subject: [PATCH] [ssh_known_hosts] Il faut ajouter des \n maintenant sinon on a tout sur une ligne MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Je ne sais pas pourquoi le comportement à changer, je ne vois rien pour entraîner ça dans les dernier commits sur ce fichier. --- Python/etc/ssh/ssh_known_hosts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/etc/ssh/ssh_known_hosts b/Python/etc/ssh/ssh_known_hosts index 5d132f0..7b03a8a 100644 --- a/Python/etc/ssh/ssh_known_hosts +++ b/Python/etc/ssh/ssh_known_hosts @@ -38,4 +38,4 @@ for key in key_machines.keys(): output.append("%s %s" % (','.join(hosts),key)) output.sort() -sys.stdout.write("".join(output)) +sys.stdout.write("\n".join(output))