소스 검색

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 "_"


불러오는 중...
취소
저장