瀏覽代碼

Forgot to trim newlines

master
Noëlle Anthony 5 年之前
父節點
當前提交
44a4fcfb12
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      mushcord.py

+ 1
- 1
mushcord.py 查看文件

@@ -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']

Loading…
取消
儲存