Explorar el Código

Forgot to trim newlines

master
Noëlle Anthony hace 5 años
padre
commit
44a4fcfb12
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      mushcord.py

+ 1
- 1
mushcord.py Ver fichero

@@ -13,7 +13,7 @@ class Mushcord:
options = file.readlines()
config = {}
for option in options:
o = option.split('=')
o = option.strip("\n").split('=')
config[o[0]] = config[o[1]]
self.TOKEN = config['TOKEN']
self.server = config['SERVER']

Cargando…
Cancelar
Guardar