This commit is contained in:
NikolajDanger
2020-08-13 16:42:29 +02:00
parent 26de61823f
commit 52dd554816

View File

@ -23,7 +23,7 @@ class Options():
data = f.read().splitlines()
self.prefix = data[0][7:].replace(" ","")
self.testing = bool(data[1][8:].replace(" ",""))
self.testing = (data[1][8:].replace(" ","").lower() == "true")
class Gwendolyn(commands.Bot):
def __init__(self):