Minor changes

This commit is contained in:
Nikolaj Danger
2020-03-25 11:39:29 +01:00
parent 309ee2582c
commit be55f8c564
2 changed files with 4 additions and 5 deletions

View File

@ -12,8 +12,7 @@ import funcs
logging.basicConfig(filename="gwendolyn.log", level=logging.INFO)
with open("token.txt","r") as f:
token = f.read()
token = token.replace("\n","")
token = f.read().replace("\n","")
client = discord.Client()