소스 검색

rmv unnecessary silent param; unused

tags/v0.1
Ben Kurtovic 13 년 전
부모
커밋
c81e0e2260
1개의 변경된 파일5개의 추가작업 그리고 7개의 파일을 삭제
  1. +5
    -7
      irc/command_handler.py

+ 5
- 7
irc/command_handler.py 파일 보기

@@ -7,7 +7,7 @@ import traceback

commands = []

def init_commands(connection, silent=False):
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/

@@ -20,17 +20,15 @@ def init_commands(connection, silent=False):
try:
exec "from irc.commands import %s" % module
except: # importing the file failed for some reason...
if not silent:
print "Couldn't load file %s:" % f
traceback.print_exc()
print "Couldn't load file %s:" % f
traceback.print_exc()
continue

m = eval(module) # 'module' is a string, so get the actual object for processing
process_module(connection, m)

if not silent:
pretty_cmnds = map(lambda c: c.__class__.__name__, commands)
print "Found %s command classes: %s." % (len(commands), ', '.join(pretty_cmnds))
pretty_cmnds = map(lambda c: c.__class__.__name__, commands)
print "Found %s command classes: %s." % (len(commands), ', '.join(pretty_cmnds))

def process_module(connection, module):
"""go through all objects in a module and add valid command classes to the commands variable"""


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