From 309ee2582ce031b1157afa50d426caecc83576bc Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Tue, 24 Mar 2020 17:16:31 +0100 Subject: [PATCH] Fixed a thing --- Gwendolyn.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gwendolyn.py b/Gwendolyn.py index 6c8526b..7bc1f4b 100644 --- a/Gwendolyn.py +++ b/Gwendolyn.py @@ -12,7 +12,8 @@ import funcs logging.basicConfig(filename="gwendolyn.log", level=logging.INFO) with open("token.txt","r") as f: - token =f.read() + token = f.read() + token = token.replace("\n","") client = discord.Client()