From 850cea84a30247d922f63bb89fd3637f10e6ad8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre-Elliott=20B=C3=A9cue?= Date: Thu, 14 May 2015 14:11:50 +0200 Subject: [PATCH] sys.stdout.write? Are you from the past? --- 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 7b03a8a..1e6fd41 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("\n".join(output)) +_out("\n".join(output))