瀏覽代碼

alphabetically sort list of files when loading command modules

tags/v0.1
Ben Kurtovic 13 年之前
父節點
當前提交
36801bda6a
共有 1 個檔案被更改,包括 1 行新增0 行删除
  1. +1
    -0
      irc/command_handler.py

+ 1
- 0
irc/command_handler.py 查看文件

@@ -10,6 +10,7 @@ commands = []
def init_commands(connection):
"""load all valid command classes from irc/commmands/ into the commands variable"""
files = os.listdir(os.path.join("irc", "commands")) # get all files in irc/commands/
files.sort() # alphabetically sort list of files

for f in files:
if f.startswith("_") or not f.endswith(".py"): # ignore non-python files or files beginning with "_"


Loading…
取消
儲存