Small Fix

This commit is contained in:
Akumatic 2018-06-20 02:27:14 +02:00
parent 6781e22b2b
commit 2cf43e938f

View File

@ -5,7 +5,7 @@ from discord.ext import commands
#config file
c = json.load(open("settings.json", "r"))
#The Bot itself
bot = commands.Bot(description=c["description"], command_prefix=c["prefix"], pm_help=c["pmHelp"])
bot = commands.Bot(description=c["description"], command_prefix=c["prefix"])
#Function to write changed config to JSON file
def writeJSON(data):