From aba4aa135204ce1181acb20c2a08675b097503d6 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Wed, 4 Nov 2015 11:15:20 -0800 Subject: [PATCH] fix --- plugins/xeserv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/xeserv.py b/plugins/xeserv.py index 66977de..46efbdf 100644 --- a/plugins/xeserv.py +++ b/plugins/xeserv.py @@ -14,7 +14,7 @@ def minecraft(pls): if data["players"] == None: return "fluttershy.yochat.biz has no online players" - return "fluttershy.yochat.biz has the following players: " + (reduce (lambda x, y: x + " " + y), data["players"]) + return "fluttershy.yochat.biz has the following players: " + " ".join(data["players"]) @hook.command def tf2(pls):