From 687a408d8c4fe9ef8cad0c2bc0a25b2d00a647d3 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 30 Sep 2008 18:05:13 +0200 Subject: [PATCH] I rather prefer the hosts in one line. --- build/rpc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/rpc.py b/build/rpc.py index bfcf44d8..951bcf52 100644 --- a/build/rpc.py +++ b/build/rpc.py @@ -81,7 +81,7 @@ elif action == "get": while True: if not builders: break rand = random.randint(0, len(builders)-1) - string += "%s\n" % builders[rand] + string = "%s %s" % (string, builders[rand],) builders.pop(rand) response.set_mesg(string) -- 2.47.3