From dc90f506bddaf5165b730367e6dfb81af46d73a2 Mon Sep 17 00:00:00 2001 From: Giuseppe Guerra Date: Fri, 22 Sep 2017 22:57:21 +0200 Subject: [PATCH] Fix np bug again --- constants/fokabotCommands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants/fokabotCommands.py b/constants/fokabotCommands.py index 7bd79ae..c03b518 100644 --- a/constants/fokabotCommands.py +++ b/constants/fokabotCommands.py @@ -1115,7 +1115,7 @@ def switchServer(fro, chan, message): def rtx(fro, chan, message): target = message[0] - message = message[1] + message = " ".join(message[1:]) targetUserID = userUtils.getIDSafe(target) if not targetUserID: return "{}: user not found".format(target)