Cleanup in resources

This commit is contained in:
Nikolaj Danger
2020-03-24 15:49:31 +01:00
parent 780e32fcc6
commit b2a47ce11a
16 changed files with 23 additions and 25 deletions

View File

@ -34,7 +34,7 @@ async def on_message(message):
localtime = time.asctime( time.localtime(time.time()) )
print("\n"+localtime+"\n"+message.author.name+" ran !help")
logging.info("\n"+localtime+"\n"+message.author.name+" ran !help")
with codecs.open("help.txt",encoding="utf-8") as f:
with codecs.open("resources/help.txt",encoding="utf-8") as f:
text = f.read()
print(text)
em = discord.Embed(title = "Help", description = text,colour = 0x59f442)