From: Michael Tremer Date: Tue, 30 Sep 2008 16:05:13 +0000 (+0200) Subject: I rather prefer the hosts in one line. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=687a408d8c4fe9ef8cad0c2bc0a25b2d00a647d3;p=ipfire.org.git I rather prefer the hosts in one line. --- 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)