From 970c149bbc4f040e10b2508605da047e34128995 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Wed, 3 Jun 2020 19:32:16 +0100 Subject: [PATCH] Trying to fix token not working now --- EnsoBot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnsoBot.py b/EnsoBot.py index 0fbc8843..00845783 100644 --- a/EnsoBot.py +++ b/EnsoBot.py @@ -4,7 +4,7 @@ from discord.ext import commands # Bot Prefix client = commands.Bot(command_prefix='~') -token = open("bottoken/token.txt", "r").readline() +token = open("bottoken\token.txt", "r").readline() # Instantiates a list for all the cogs extensions = ['cogs.WaifuImages', 'cogs.FunCommands']