소스 검색

hopefully catch command exceptions properly this time

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

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

@@ -58,5 +58,9 @@ def check(hook, data):
for command in commands:
if hook in command.get_hooks():
if command.check(data):
command.process(data)
try:
command.process(data)
except:
print "Error executing command:"
traceback.print_exc() # catch exceptions and print them
break

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